summaryrefslogtreecommitdiffstats
path: root/src/usr/errl/errlsctnhdr.C
blob: 3d2a15841896df288861f5d259098001fef2face (plain)
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
/**
 *  @file errlsctnhdr.C
 *
 *  @brief  Abstract header of all error log's sections
 *
 *  This header file contains the definition of common section header in
 *  each error log's section
 *
 */

/*****************************************************************************/
// I n c l u d e s
/*****************************************************************************/
#include "errlsctnhdr.H"

namespace ERRORLOG
{

///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ErrlSctnHdr::ErrlSctnHdr(const compId_t i_compId,
                                 const uint8_t i_sctnVer,
                                 const uint8_t i_subSect)
:iv_compId(i_compId),
iv_sctnVer(i_sctnVer),
iv_subSect(i_subSect)
{

}


///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ErrlSctnHdr::~ErrlSctnHdr()
{

}

} // End namespace
OpenPOWER on IntegriCloud