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