summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.hxx
blob: 458a99b46923a89b5b49421e6d36e0746e5187aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _CSHM_DUMMY_HXX
#define _CSHM_DUMMY_HXX

namespace ns {

class non_existent_class;
class class_with_non_existent_members {
};
class class_with_member {
public:
    int foo;
};

}

#endif