Changeset 461 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- Mar 23, 2008, 11:35:33 AM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common/include
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/Compiler.h
r459 r461 33 33 bool isDebug; 34 34 35 // Unicode対応モジュールかどうか 36 bool isUnicode; 37 35 38 // 名前空間サポート 36 39 NamespaceSupporter namespaceSupporter; … … 47 50 , targetModuleType( Exe ) 48 51 , isDebug( false ) 52 , isUnicode( false ) 49 53 , isCore( false ) 50 54 { … … 142 146 } 143 147 148 void SetUnicodeMark( bool isUnicode ) 149 { 150 this->isUnicode = isUnicode; 151 } 152 bool IsUnicode() 153 { 154 return isUnicode; 155 } 156 144 157 145 158 // コアモジュールかどうか -
trunk/ab5.0/abdev/BasicCompiler_Common/include/LexicalScope.h
r248 r461 1 1 #pragma once 2 3 #include <jenga/include/smoothie/Smoothie.h>4 2 5 3 #include <CodeGenerator.h> -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Parameter.h
r448 r461 3 3 #include <string> 4 4 #include <vector> 5 6 #include <jenga/include/smoothie/BasicFixed.h>7 5 8 6 #include <option.h> -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Source.h
r322 r461 9 9 10 10 #include <jenga/include/common/Exception.h> 11 #include <jenga/include/smoothie/BasicFixed.h>12 11 13 12 #include <BoostSerializationSupport.h> -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Type.h
r448 r461 8 8 #include <jenga/include/common/Exception.h> 9 9 #include <BoostSerializationSupport.h> 10 #include <jenga/include/smoothie/BasicFixed.h>11 10 12 11 #include <option.h>
Note:
See TracChangeset
for help on using the changeset viewer.