-
Notifications
You must be signed in to change notification settings - Fork 19
/
main.h
64 lines (51 loc) · 745 Bytes
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// Created by Bas Zalmstra on 19/05/15.
//
#pragma once
#include "main.h"
R_ENUM()
enum Numbers
{
Zero,
One,
Two,
Three =0,
};
R_CLASS(Abstract)
class HenkClass : Foo, public Bar
{
public:
R_CLASS()
class SubClass
{
};
class AnonymousClass
{
};
R_FUNCTION(Serializable="yes", Setter=set_member_method, meta(Foo=true, Bar=0xF, Hello=0.5f, World=0.10))
inline virtual String const & member_method(const String& name, bool enable = true) const = 0;
R_ENUM()
enum Numbers
{
Zero,
One = 1,
Two,
Three =0,
};
};
enum IgnoredNumbers
{
Four = 4,
Five,
};
namespace test {
R_ENUM()
enum class CXX11Numbers : uint8_t
{
Six,
Seven,
Eight,
Nine,
Ten = 10
};
}