]> www.ginac.de Git - cln.git/blob - src/base/cl_condition.cc
Initial revision
[cln.git] / src / base / cl_condition.cc
1 // Conditions.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_condition.h"
8
9
10 // Implementation.
11
12 // This tells the compiler to put the `cl_condition' vtable into this file.
13 void cl_condition::dummy () {}
14
15 // The destructor must be defined although it is virtual and abstract.
16 #if !(defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ < 8))
17 cl_condition::~cl_condition () {}
18 #endif