2013-09-20 17:10:40 +04:00
|
|
|
#ifndef _CSHM_DUMMY_HXX
|
|
|
|
#define _CSHM_DUMMY_HXX
|
|
|
|
|
|
|
|
namespace ns {
|
|
|
|
|
|
|
|
class non_existent_class;
|
2016-05-16 17:34:04 +03:00
|
|
|
class class_with_non_existent_members
|
|
|
|
{
|
2013-09-20 17:10:40 +04:00
|
|
|
};
|
2016-05-16 17:34:04 +03:00
|
|
|
class class_with_member
|
|
|
|
{
|
2013-09-20 17:10:40 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
int foo;
|
2013-09-20 17:10:40 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|