diff options
author | rtk0c <[email protected]> | 2022-06-02 21:34:16 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-02 21:34:16 -0700 |
commit | bd07ae3f4e1bcdedc3e373460671ca9713a03de5 (patch) | |
tree | 15c897891474a97983f247196923f8e4f2184083 /source/20-codegen-runtime/MacrosCodegen.hpp | |
parent | 8a0f2cd0b398ee0b7740e44a0e5fb2f75d090ccb (diff) |
Changeset: 60 Add struct/class scanning to codegen
Diffstat (limited to 'source/20-codegen-runtime/MacrosCodegen.hpp')
-rw-r--r-- | source/20-codegen-runtime/MacrosCodegen.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source/20-codegen-runtime/MacrosCodegen.hpp b/source/20-codegen-runtime/MacrosCodegen.hpp index 6803023..956123c 100644 --- a/source/20-codegen-runtime/MacrosCodegen.hpp +++ b/source/20-codegen-runtime/MacrosCodegen.hpp @@ -1,7 +1,10 @@ -// NOTE: contents of this file is coupled with buildtools/codegen/ -// when updating, change both sides at the same time +// NOTE: Contents of this file is coupled with the codegen compiler. +// When updating, change both sides at the same time. #pragma once -#define BRUSSEL_CLASS(name, options) +#define BRUSSEL_CLASS(...) +#define BRUSSEL_PROPERTY(...) +#define BRUSSEL_METHOD(...) + #define BRUSSEL_ENUM(name, options) |