libmoost
/home/mhx/git/github/libmoost/test/pdl/test_class_2.h
Go to the documentation of this file.
00001 /* vim:set ts=3 sw=3 sts=3 et: */
00028 #ifndef MOOST_PDL_TEST_CLASS_2_H__
00029 #define MOOST_PDL_TEST_CLASS_2_H__
00030 
00031 #include "test_interface.h"
00032 
00033 class my_test_class1 : public my_test_interface
00034 {
00035 public:
00036    my_test_class1();
00037    ~my_test_class1();
00038 
00039    int do_it();
00040 
00041 private:
00042    static int inst;
00043    const std::string m_inst;
00044 };
00045 
00046 class my_test_class2 : public my_test_interface
00047 {
00048 public:
00049    my_test_class2();
00050    ~my_test_class2();
00051 
00052    int do_it();
00053 
00054 private:
00055    static int inst;
00056    const std::string m_inst;
00057    int m_ctr;
00058 };
00059 
00060 #endif