]> git.tdb.fi Git - libs/test.git/blob - function.cpp
0053d3948b39147d363cea1f0ec94a4ccf08fe59
[libs/test.git] / 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