Changeset 750 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/ObjectModule.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/ObjectModule.cpp
r640 r750 11 11 #include <sstream> 12 12 13 #define WIN32_LEAN_AND_MEAN 13 14 #include <windows.h> 14 15 #include <stdio.h> 15 16 #include <string.h> 16 17 #include <math.h> 17 #include <commctrl.h>18 18 #include <time.h> 19 19 #include <limits.h> 20 20 #include <shlobj.h> 21 #include <process.h>22 #include <fcntl.h>23 #include <io.h>24 #include <shlwapi.h>25 21 #include <tchar.h> 26 #include <stdarg.h>27 22 28 23 //boost libraries … … 52 47 #include <boost/serialization/export.hpp> 53 48 49 #define foreach(v, c) for each (v in c) 50 54 51 #include <jenga/include/jenga.h> 55 52 #include <abdev/ab_common/include/ab_common.h> … … 99 96 100 97 // リレーションテーブルを構築 101 BOOST_FOREACH( const std::string &oldRelationalObjectModuleName, oldRelationalObjectModuleNames )98 foreach( const std::string &oldRelationalObjectModuleName, oldRelationalObjectModuleNames ) 102 99 { 103 100 bool isMatch = false; … … 141 138 isSuccessful = true; 142 139 } 143 catch( boost::archive::archive_exception e )140 catch( boost::archive::archive_exception& e ) 144 141 { 145 142 MessageBox( NULL, e.what(), "XMLシリアライズの例外", MB_OK ); … … 174 171 isSuccessful = true; 175 172 } 176 catch( boost::archive::archive_exception e )173 catch( boost::archive::archive_exception& e ) 177 174 { 178 175 MessageBox( NULL, e.what(), "XMLシリアライズの例外", MB_OK ); … … 209 206 isSuccessful = true; 210 207 } 211 catch( boost::archive::archive_exception e )208 catch( boost::archive::archive_exception& e ) 212 209 { 213 210 MessageBox( NULL, e.what(), "XMLシリアライズの例外", MB_OK ); … … 245 242 isSuccessful = true; 246 243 } 247 catch( boost::archive::archive_exception e )244 catch( boost::archive::archive_exception &e ) 248 245 { 249 246 MessageBox( NULL, e.what(), "XMLシリアライズの例外", MB_OK );
Note:
See TracChangeset
for help on using the changeset viewer.