Changeset 215 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Jul 17, 2007, 3:44:11 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 6 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Enum.cpp
r206 r215 1 1 #include "stdafx.h" 2 3 #include <jenga/include/common/logger.h>4 2 5 3 #include <jenga/include/smoothie/Smoothie.h> -
trunk/abdev/BasicCompiler_Common/Enum.h
r182 r215 1 1 #pragma once 2 2 3 #include < jenga/include/smoothie/Namespace.h>3 #include <Namespace.h> 4 4 5 5 class CEnumMember{ -
trunk/abdev/BasicCompiler_Common/include/MetaImpl.h
r212 r215 1 1 #pragma once 2 2 3 #include < jenga/include/common/BoostSerializationSupport.h>3 #include <BoostSerializationSupport.h> 4 4 5 5 #include <option.h> … … 153 153 return procPointers; 154 154 } 155 156 bool AutoWrite( const std::string &filePath )157 {158 std::ofstream ofs( filePath.c_str() );159 160 bool isSuccessful = false;161 try{162 boost::archive::xml_oarchive oa(ofs);163 164 // ファイルから読込165 oa << boost::serialization::make_nvp( RootTagName(), *this );166 167 isSuccessful = true;168 }169 catch(...){170 // 失敗171 }172 173 // 入力を閉じる174 ofs.close();175 176 return isSuccessful;177 }178 155 }; -
trunk/abdev/BasicCompiler_Common/include/NamespaceSupporter.h
r199 r215 1 1 #pragma once 2 2 3 #include < jenga/include/smoothie/Namespace.h>3 #include <Namespace.h> 4 4 5 5 class NamespaceSupporter -
trunk/abdev/BasicCompiler_Common/include/Procedure.h
r210 r215 1 1 #pragma once 2 2 3 #include <jenga/include/common/Hashmap.h>4 3 #include <jenga/include/smoothie/Source.h> 5 4 5 #include <Hashmap.h> 6 6 #include <option.h> 7 7 #include <Program.h> -
trunk/abdev/BasicCompiler_Common/include/Program.h
r168 r215 1 1 #pragma once 2 2 3 #include < jenga/include/common/logger.h>3 #include <logger.h> 4 4 5 5 class Program -
trunk/abdev/BasicCompiler_Common/include/Prototype.h
r212 r215 4 4 #include <vector> 5 5 6 #include < jenga/include/common/BoostSerializationSupport.h>6 #include <BoostSerializationSupport.h> 7 7 8 8 #include <Symbol.h> -
trunk/abdev/BasicCompiler_Common/include/Symbol.h
r212 r215 4 4 #include <string> 5 5 6 #include <jenga/include/ common/BoostSerializationSupport.h>6 #include <jenga/include/smoothie/LexicalAnalysis.h> 7 7 8 #include < jenga/include/smoothie/Namespace.h>9 #include < jenga/include/smoothie/LexicalAnalysis.h>8 #include <BoostSerializationSupport.h> 9 #include <Namespace.h> 10 10 11 11 using namespace std; -
trunk/abdev/BasicCompiler_Common/include/Type.h
r212 r215 7 7 8 8 #include <jenga/include/common/Exception.h> 9 #include < jenga/include/common/BoostSerializationSupport.h>9 #include <BoostSerializationSupport.h> 10 10 #include <jenga/include/smoothie/BasicFixed.h> 11 11 -
trunk/abdev/BasicCompiler_Common/include/TypeDef.h
r206 r215 4 4 #include <string> 5 5 6 #include <jenga/include/smoothie/Namespace.h> 7 6 #include <Namespace.h> 8 7 #include <Type.h> 9 8 #include <Symbol.h> -
trunk/abdev/BasicCompiler_Common/include/option.h
r212 r215 26 26 #define USE_TRACE 27 27 #else 28 #define USE_TRACE28 //#define USE_TRACE 29 29 #endif 30 30
Note:
See TracChangeset
for help on using the changeset viewer.