Changeset 212 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Jul 16, 2007, 11:35:35 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/MetaImpl.h
r209 r212 1 1 #pragma once 2 2 3 #include <jenga/include/common/Boost XmlSupport.h>3 #include <jenga/include/common/BoostSerializationSupport.h> 4 4 5 5 #include <option.h> … … 11 11 #include <Const.h> 12 12 13 class MetaImpl : public Jenga::Common::Boost XmlSupport<MetaImpl>13 class MetaImpl : public Jenga::Common::BoostSerializationSupport<MetaImpl> 14 14 { 15 15 // 名前空間 -
trunk/abdev/BasicCompiler_Common/include/Prototype.h
r206 r212 4 4 #include <vector> 5 5 6 #include <jenga/include/common/Boost XmlSupport.h>6 #include <jenga/include/common/BoostSerializationSupport.h> 7 7 8 8 #include <Symbol.h> -
trunk/abdev/BasicCompiler_Common/include/Symbol.h
r210 r212 4 4 #include <string> 5 5 6 #include <jenga/include/common/Boost XmlSupport.h>6 #include <jenga/include/common/BoostSerializationSupport.h> 7 7 8 8 #include <jenga/include/smoothie/Namespace.h> -
trunk/abdev/BasicCompiler_Common/include/Type.h
r206 r212 7 7 8 8 #include <jenga/include/common/Exception.h> 9 #include <jenga/include/common/Boost XmlSupport.h>9 #include <jenga/include/common/BoostSerializationSupport.h> 10 10 #include <jenga/include/smoothie/BasicFixed.h> 11 11 -
trunk/abdev/BasicCompiler_Common/include/option.h
r210 r212 23 23 24 24 // ログ生成しない場合はこの下の行をコメントアウトする 25 #define USE_TRACE 25 #ifdef _DEBUG 26 #define USE_TRACE 27 #else 28 #define USE_TRACE 29 #endif 26 30 27 // オーバーロードに関するログを生成する 28 //#define USE_TRACE_FOR_OVERLOAD 31 #ifdef USE_TRACE 32 // オーバーロードに関するログを生成する 33 //#define USE_TRACE_FOR_OVERLOAD 29 34 30 // モジュールサイズに関するログを生成する31 //#define USE_TRACE_FOR_SIZE35 // モジュールサイズに関するログを生成する 36 //#define USE_TRACE_FOR_SIZE 32 37 33 // XMLシリアライズに関するログを生成する34 //#define USE_TRACE_FOR_SERIALIZE38 // XMLシリアライズに関するログを生成する 39 #define USE_TRACE_FOR_SERIALIZE 35 40 36 // ソースコードステップに関するログを生成する 37 #define USE_TRACE_FOR_SOURCECODESTEP 41 // ソースコードステップに関するログを生成する 42 #define USE_TRACE_FOR_SOURCECODESTEP 43 #endif 38 44 39 45
Note:
See TracChangeset
for help on using the changeset viewer.