You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
378 B

// Conditions.
// General includes.
#include "cl_sysdep.h"
// Specification.
#include "cln/condition.h"
// Implementation.
namespace cln {
// This tells the compiler to put the `cl_condition' vtable into this file.
void cl_condition::dummy () {}
// The destructor must be defined although it is virtual and abstract.
cl_condition::~cl_condition () {}
} // namespace cln