]> git.tdb.fi Git - libs/test.git/blob - source/function.cpp
Initial commit
[libs/test.git] / source / function.cpp
1 #include "function.h"
2
3 using namespace std;
4
5 namespace Msp {
6 namespace Test {
7
8 Function::Function(const string &d):
9         description(d),
10         exc_check(0)
11 { }
12
13 Function::~Function()
14 {
15         delete exc_check;
16 }
17
18 } // namespace Test
19 } // namespace Msp