blob: b9d4f17b0e8ab59b1f7a772436de559bfb374478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/** --------------------------------------------------------------------
* @file status.cc
* @brief Implementation of the Status class.
* @author Andreas Aardal Hanssen
* @date 2002-2005
* ----------------------------------------------------------------- **/
#include "status.h"
using namespace ::std;
using namespace Binc;
//------------------------------------------------------------------------
Status::Status(void)
{
}
//------------------------------------------------------------------------
Status::~Status(void)
{
}
|