1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>log4cpp: LoggingEvent.hh Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.2 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<h1>LoggingEvent.hh</h1><a href="LoggingEvent_8hh.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * LoggingEvent.hh</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> * Copyright 2000, LifeLine Networks BV (www.lifeline.nl). All rights reserved.</span>
<a name="l00005"></a>00005 <span class="comment"> * Copyright 2000, Bastiaan Bakker. All rights reserved.</span>
<a name="l00006"></a>00006 <span class="comment"> *</span>
<a name="l00007"></a>00007 <span class="comment"> * See the COPYING file for the terms of usage and distribution.</span>
<a name="l00008"></a>00008 <span class="comment"> */</span>
<a name="l00009"></a>00009
<a name="l00010"></a>00010 <span class="preprocessor">#ifndef _LOG4CPP_LOGGINGEVENT_HH</span>
<a name="l00011"></a>00011 <span class="preprocessor"></span><span class="preprocessor">#define _LOG4CPP_LOGGINGEVENT_HH</span>
<a name="l00012"></a>00012 <span class="preprocessor"></span>
<a name="l00013"></a>00013 <span class="preprocessor">#include <<a class="code" href="Portability_8hh.html">log4cpp/Portability.hh</a>></span>
<a name="l00014"></a>00014 <span class="preprocessor">#include <string></span>
<a name="l00015"></a>00015
<a name="l00016"></a>00016 <span class="preprocessor">#include <<a class="code" href="Priority_8hh.html">log4cpp/Priority.hh</a>></span>
<a name="l00017"></a>00017 <span class="preprocessor">#include <<a class="code" href="TimeStamp_8hh.html">log4cpp/TimeStamp.hh</a>></span>
<a name="l00018"></a>00018
<a name="l00022"></a>00022 <span class="keyword">namespace </span>log4cpp {
<a name="l00023"></a>00023
<a name="l00032"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html">00032</a> <span class="keyword">struct </span><a class="code" href="Export_8hh.html#30f9ff9641fa394781f52398a8312437">LOG4CPP_EXPORT</a> LoggingEvent {
<a name="l00033"></a>00033 <span class="keyword">public</span>:
<a name="l00045"></a>00045 LoggingEvent(<span class="keyword">const</span> std::string& category, <span class="keyword">const</span> std::string& message,
<a name="l00046"></a>00046 <span class="keyword">const</span> std::string& ndc, <a class="code" href="classlog4cpp_1_1Priority.html#19c2e47a94a531d3028f7c545671ff72" title="The type of Priority Values.">Priority::Value</a> priority);
<a name="l00047"></a>00047
<a name="l00048"></a>00048
<a name="l00050"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#1cca378605dec8f497834b9d64e7fd99">00050</a> <span class="keyword">const</span> std::string categoryName;
<a name="l00051"></a>00051
<a name="l00053"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#0880d85605e03289daf333f25868b814">00053</a> <span class="keyword">const</span> std::string message;
<a name="l00054"></a>00054
<a name="l00056"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#1d86cfec2108acc064878550b38f9d5f">00056</a> <span class="keyword">const</span> std::string ndc;
<a name="l00057"></a>00057
<a name="l00059"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#d2fb835fe723dbb526b71423b4d16951">00059</a> <a class="code" href="classlog4cpp_1_1Priority.html#19c2e47a94a531d3028f7c545671ff72" title="The type of Priority Values.">Priority::Value</a> priority;
<a name="l00060"></a>00060
<a name="l00064"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#66969a4433669348c0fe1772c0c7e522">00064</a> <span class="keyword">const</span> std::string threadName;
<a name="l00065"></a>00065
<a name="l00068"></a><a class="code" href="structlog4cpp_1_1LoggingEvent.html#e260062ce70e1a684b8a37c8233dd59e">00068</a> <a class="code" href="classlog4cpp_1_1TimeStamp.html" title="A simple TimeStamp abstraction.">TimeStamp</a> timeStamp;
<a name="l00069"></a>00069 };
<a name="l00070"></a>00070 }
<a name="l00071"></a>00071
<a name="l00072"></a>00072 <span class="preprocessor">#endif // _LOG4CPP_LOGGINGEVENT_HH</span>
<a name="l00073"></a>00073 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Sep 3 11:54:29 2007 for log4cpp by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
</body>
</html>
|