32 lines
300 B
C++
32 lines
300 B
C++
#ifndef __INCLUDE__
|
|
#define __INCLUDE__
|
|
|
|
class Class
|
|
{
|
|
public:
|
|
virtual void method();
|
|
int member;
|
|
};
|
|
|
|
struct Struct {};
|
|
|
|
enum Enum
|
|
{
|
|
ENUM_CONSTANT
|
|
};
|
|
|
|
typedef int TypeDef;
|
|
|
|
namespace package
|
|
{
|
|
class C {};
|
|
}
|
|
|
|
struct Str1 {};
|
|
struct Str2 {};
|
|
struct Str3 {};
|
|
struct Str4 {};
|
|
struct Str5 {};
|
|
|
|
#endif
|