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