00001 #ifndef CTEST_H 00002 #define CTEST_H 00003 00004 #include <iostream> 00005 #include <cstdlib> 00006 #include "configuration.h" 00007 00012 using namespace n2nc ; 00013 00014 class ctest{ 00015 public: 00016 ctest(int a){} 00017 ctest(const ctest& a){} 00018 explicit ctest(Configuration& b){} 00019 void fuu(const Configuration& b){} 00020 ~ctest(){} 00021 // void myfun(const ctest& t){ } 00022 00023 }; 00024 00025 // class Atest : public test { 00026 // public: 00027 // int mint; 00028 // Atest(); 00029 // ~Atest(); 00030 // int getpriv(); 00031 // }; 00032 00033 #endif 00034