cm_cshm.hxx 192 B

1234567891011121314151617
  1. #ifndef _CSHM_DUMMY_HXX
  2. #define _CSHM_DUMMY_HXX
  3. namespace ns {
  4. class non_existent_class;
  5. class class_with_non_existent_members
  6. {
  7. };
  8. class class_with_member
  9. {
  10. public:
  11. int foo;
  12. };
  13. }
  14. #endif