mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
Ed_
c5afede7b5
Removing the gen. namespace from the files for components, dependencies, and file_processors. They are only necessary if the include directory is transparent, and in my case those are not. Made a docs directory. I'm offloading information from the main readme to there along with additional informationn I end up elaborating on down the line. Enum tables were moved to their own directory (project/enums). Library will not compile for now. Major refactor occuring with parsing related components.
2.3 KiB
2.3 KiB
1 | Invalid | __invalid__ |
---|---|---|
2 | Access_Private | private |
3 | Access_Protected | protected |
4 | Access_Public | public |
5 | Access_MemberSymbol | . |
6 | Access_StaticSymbol | :: |
7 | Ampersand | & |
8 | Ampersand_DBL | && |
9 | Assign_Classifer | : |
10 | Attribute_Open | [[ |
11 | Attribute_Close | ]] |
12 | BraceCurly_Open | { |
13 | BraceCurly_Close | } |
14 | BraceSquare_Open | [ |
15 | BraceSquare_Close | ] |
16 | Capture_Start | ( |
17 | Capture_End | ) |
18 | Comment | __comment__ |
19 | Char | __char__ |
20 | Comma | , |
21 | Decl_Class | class |
22 | Decl_GNU_Attribute | __attribute__ |
23 | Decl_MSVC_Attribute | __declspec |
24 | Decl_Enum | enum |
25 | Decl_Extern_Linkage | extern |
26 | Decl_Friend | friend |
27 | Decl_Module | module |
28 | Decl_Namespace | namespace |
29 | Decl_Operator | operator |
30 | Decl_Struct | struct |
31 | Decl_Template | template |
32 | Decl_Typedef | typedef |
33 | Decl_Using | using |
34 | Decl_Union | union |
35 | Identifier | __identifier__ |
36 | Module_Import | import |
37 | Module_Export | export |
38 | Number | number |
39 | Operator | operator |
40 | Preprocess_Define | #define |
41 | Preprocess_Include | #include |
42 | Preprocess_If | #if |
43 | Preprocess_ElIF | #elif |
44 | Preprocess_Else | #else |
45 | Preprocess_EndIf | #endif |
46 | Spec_Alignas | alignas |
47 | Spec_Const | const |
48 | Spec_Consteval | consteval |
49 | Spec_Constexpr | constexpr |
50 | Spec_Constinit | constinit |
51 | Spec_Explicit | explicit |
52 | Spec_Extern | extern |
53 | Spec_Final | final |
54 | Spec_Global | global |
55 | Spec_Inline | inline |
56 | Spec_Internal_Linkage | internal |
57 | Spec_LocalPersist | local_persist |
58 | Spec_Mutable | mutable |
59 | Spec_Override | override |
60 | Spec_Static | static |
61 | Spec_ThreadLocal | thread_local |
62 | Spec_Volatile | volatile |
63 | Star | * |
64 | Statement_End | ; |
65 | String | __string__ |
66 | Type_Unsigned | unsigned |
67 | Type_Signed | signed |
68 | Type_Short | short |
69 | Type_Long | long |
70 | Type_char | char |
71 | Type_int | int |
72 | Type_double | double |
73 | Varadic_Argument | ... |
74 | Attributes_Start | __attrib_start__ |