diff --git a/src/Bridge/Declaration.cs b/src/Bridge/Declaration.cs index 0cd577af..176b1e94 100644 --- a/src/Bridge/Declaration.cs +++ b/src/Bridge/Declaration.cs @@ -8,20 +8,6 @@ namespace Cxxi /// public class Declaration { - public Declaration() - { - } - - public Declaration(string name) - { - Name = name; - } - - public override string ToString() - { - return Name; - } - // Name of the type. public string Name; @@ -36,6 +22,20 @@ namespace Cxxi // Contains a debug text of the type declaration. public string DebugText; + + public Declaration() + { + } + + public Declaration(string name) + { + Name = name; + } + + public override string ToString() + { + return Name; + } } /// @@ -43,11 +43,11 @@ namespace Cxxi /// public class MacroDefine : Declaration { + // Contains the macro definition text. + public string Expression; + public MacroDefine() { } - - // Contains the macro definition text. - public string Expression; } } \ No newline at end of file