[184] | 1 | #pragma once
|
---|
| 2 |
|
---|
[206] | 3 | #include <jenga/include/smoothie/Source.h>
|
---|
[184] | 4 |
|
---|
[215] | 5 | #include <Hashmap.h>
|
---|
[206] | 6 | #include <option.h>
|
---|
| 7 | #include <Program.h>
|
---|
| 8 | #include <Class.h>
|
---|
| 9 | #include <Method.h>
|
---|
| 10 | #include <Procedure.h>
|
---|
| 11 | #include <Parameter.h>
|
---|
| 12 | #include <Variable.h>
|
---|
[225] | 13 | #include <CodeGenerator.h>
|
---|
[184] | 14 |
|
---|
[206] | 15 | class CClass;
|
---|
| 16 | class CMethod;
|
---|
| 17 |
|
---|
[208] | 18 | class Procedure : public Symbol
|
---|
[184] | 19 | {
|
---|
| 20 | public:
|
---|
[206] | 21 | // 種類
|
---|
| 22 | enum Kind{
|
---|
| 23 | Sub,
|
---|
| 24 | Function,
|
---|
| 25 | };
|
---|
| 26 |
|
---|
| 27 | private:
|
---|
| 28 | Kind kind;
|
---|
| 29 |
|
---|
| 30 | bool isCdecl;
|
---|
| 31 | mutable bool isUsing;
|
---|
| 32 |
|
---|
| 33 | protected:
|
---|
| 34 |
|
---|
| 35 | // パラメータ
|
---|
| 36 | Parameters params;
|
---|
| 37 |
|
---|
| 38 | // 戻り値の型
|
---|
| 39 | Type returnType;
|
---|
| 40 |
|
---|
| 41 | // ソースコードの位置
|
---|
| 42 | int codePos;
|
---|
| 43 |
|
---|
| 44 | // XMLシリアライズ用
|
---|
| 45 | private:
|
---|
| 46 | private:
|
---|
| 47 | friend class boost::serialization::access;
|
---|
[208] | 48 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
[184] | 49 | {
|
---|
[206] | 50 | trace_for_serialize( "serializing - Procedure" );
|
---|
| 51 |
|
---|
[208] | 52 | ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Symbol );
|
---|
[206] | 53 | ar & BOOST_SERIALIZATION_NVP( kind );
|
---|
| 54 | ar & BOOST_SERIALIZATION_NVP( isCdecl );
|
---|
| 55 | ar & BOOST_SERIALIZATION_NVP( isUsing );
|
---|
| 56 | ar & BOOST_SERIALIZATION_NVP( params );
|
---|
| 57 | ar & BOOST_SERIALIZATION_NVP( returnType );
|
---|
| 58 | ar & BOOST_SERIALIZATION_NVP( codePos );
|
---|
[184] | 59 | }
|
---|
[206] | 60 |
|
---|
| 61 | public:
|
---|
[208] | 62 | Procedure( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl )
|
---|
| 63 | : Symbol( namespaceScopes, name )
|
---|
[206] | 64 | , kind( kind )
|
---|
| 65 | , isCdecl( isCdecl )
|
---|
| 66 | , isUsing( false )
|
---|
| 67 | , codePos( -1 )
|
---|
| 68 | {
|
---|
| 69 | }
|
---|
| 70 | Procedure()
|
---|
| 71 | {
|
---|
| 72 | }
|
---|
| 73 | ~Procedure(){
|
---|
| 74 | BOOST_FOREACH( Parameter *pParam, params ){
|
---|
| 75 | delete pParam;
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | bool IsSub() const
|
---|
| 80 | {
|
---|
| 81 | return ( kind == Sub );
|
---|
| 82 | }
|
---|
| 83 | bool IsFunction() const
|
---|
| 84 | {
|
---|
| 85 | return ( kind == Function );
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | bool IsCdecl() const
|
---|
| 89 | {
|
---|
| 90 | return isCdecl;
|
---|
| 91 | }
|
---|
| 92 | void Using() const
|
---|
| 93 | {
|
---|
| 94 | isUsing = true;
|
---|
| 95 | }
|
---|
| 96 | bool IsUsing() const
|
---|
| 97 | {
|
---|
| 98 | return isUsing;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | int GetCodePos() const
|
---|
| 102 | {
|
---|
| 103 | return codePos;
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | const Parameters &Params() const
|
---|
| 107 | {
|
---|
| 108 | return params;
|
---|
| 109 | }
|
---|
| 110 | const Type &ReturnType() const
|
---|
| 111 | {
|
---|
| 112 | return returnType;
|
---|
| 113 | }
|
---|
[184] | 114 | };
|
---|
| 115 |
|
---|
[206] | 116 | class UserProc : public Procedure, public Jenga::Common::ObjectInHashmap<UserProc>
|
---|
[184] | 117 | {
|
---|
| 118 | public:
|
---|
[206] | 119 | string _paramStr;
|
---|
[184] | 120 |
|
---|
[206] | 121 | private:
|
---|
| 122 | NamespaceScopesCollection importedNamespaces;
|
---|
[184] | 123 |
|
---|
[206] | 124 | // 親クラスと対応するメソッド
|
---|
| 125 | const CClass *pParentClass;
|
---|
| 126 | CMethod *pMethod;
|
---|
| 127 |
|
---|
| 128 | bool isMacro;
|
---|
| 129 |
|
---|
| 130 | // パラメータの追加情報
|
---|
| 131 | int secondParmNum;
|
---|
| 132 | Parameters realParams;
|
---|
| 133 | int realSecondParmNum;
|
---|
| 134 |
|
---|
| 135 | // 各種フラグ
|
---|
| 136 | bool isExport;
|
---|
| 137 | mutable bool isSystem;
|
---|
| 138 | mutable bool isAutoGeneration;
|
---|
| 139 | mutable bool isCompiled;
|
---|
| 140 |
|
---|
| 141 | mutable DWORD beginOpAddress;
|
---|
| 142 | mutable DWORD endOpAddress;
|
---|
| 143 |
|
---|
| 144 | // ローカル変数
|
---|
| 145 | mutable Variables localVars;
|
---|
| 146 |
|
---|
| 147 | // 識別ID
|
---|
| 148 | int id;
|
---|
| 149 |
|
---|
[224] | 150 | // ネイティブコード
|
---|
| 151 | NativeCode nativeCode;
|
---|
| 152 |
|
---|
[206] | 153 | // XMLシリアライズ用
|
---|
| 154 | private:
|
---|
| 155 | friend class boost::serialization::access;
|
---|
| 156 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
[184] | 157 | {
|
---|
[206] | 158 | trace_for_serialize( "serializing - UserProc" );
|
---|
| 159 |
|
---|
| 160 | ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Procedure );
|
---|
| 161 | ar & BOOST_SERIALIZATION_NVP( _paramStr );
|
---|
| 162 | ar & BOOST_SERIALIZATION_NVP( importedNamespaces );
|
---|
| 163 | ar & boost::serialization::make_nvp("pParentClass", const_cast<CClass *&>(pParentClass) );
|
---|
| 164 | ar & BOOST_SERIALIZATION_NVP( pMethod );
|
---|
| 165 | ar & BOOST_SERIALIZATION_NVP( isMacro );
|
---|
| 166 | ar & BOOST_SERIALIZATION_NVP( secondParmNum );
|
---|
| 167 | ar & BOOST_SERIALIZATION_NVP( realParams );
|
---|
| 168 | ar & BOOST_SERIALIZATION_NVP( realSecondParmNum );
|
---|
| 169 | ar & BOOST_SERIALIZATION_NVP( isExport );
|
---|
| 170 | ar & BOOST_SERIALIZATION_NVP( isSystem );
|
---|
| 171 | ar & BOOST_SERIALIZATION_NVP( isAutoGeneration );
|
---|
| 172 | ar & BOOST_SERIALIZATION_NVP( isCompiled );
|
---|
| 173 | ar & BOOST_SERIALIZATION_NVP( beginOpAddress );
|
---|
| 174 | ar & BOOST_SERIALIZATION_NVP( endOpAddress );
|
---|
| 175 | ar & BOOST_SERIALIZATION_NVP( localVars );
|
---|
| 176 | ar & BOOST_SERIALIZATION_NVP( id );
|
---|
[224] | 177 | ar & BOOST_SERIALIZATION_NVP( nativeCode );
|
---|
[184] | 178 | }
|
---|
| 179 |
|
---|
[206] | 180 | public:
|
---|
| 181 |
|
---|
| 182 | UserProc( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const string &name, Kind kind, bool isMacro, bool isCdecl, bool isExport, int id )
|
---|
[208] | 183 | : Procedure( namespaceScopes, name, kind, isCdecl )
|
---|
[206] | 184 | , importedNamespaces( importedNamespaces )
|
---|
| 185 | , pParentClass( NULL )
|
---|
| 186 | , pMethod( NULL )
|
---|
| 187 | , isMacro( isMacro )
|
---|
| 188 | , isExport( isExport )
|
---|
| 189 | , isSystem( false )
|
---|
| 190 | , isAutoGeneration( false )
|
---|
| 191 | , isCompiled( false )
|
---|
| 192 | , beginOpAddress( 0 )
|
---|
| 193 | , endOpAddress( 0 )
|
---|
| 194 | , id( id )
|
---|
| 195 | {
|
---|
| 196 | }
|
---|
| 197 | UserProc()
|
---|
| 198 | {
|
---|
| 199 | }
|
---|
| 200 | ~UserProc()
|
---|
| 201 | {
|
---|
| 202 | BOOST_FOREACH( Parameter *pParam, realParams ){
|
---|
| 203 | delete pParam;
|
---|
| 204 | }
|
---|
| 205 | }
|
---|
| 206 |
|
---|
| 207 | virtual const std::string &GetKeyName() const
|
---|
| 208 | {
|
---|
| 209 | return GetName();
|
---|
| 210 | }
|
---|
| 211 |
|
---|
[209] | 212 | virtual bool IsDuplication( const UserProc *pUserProc ) const
|
---|
| 213 | {
|
---|
| 214 | if( this->GetParentClassPtr() == pUserProc->GetParentClassPtr()
|
---|
| 215 | && pUserProc->IsEqualSymbol( *this )
|
---|
| 216 | && this->Params().Equals( pUserProc->Params() ) )
|
---|
| 217 | {
|
---|
| 218 | return true;
|
---|
| 219 | }
|
---|
| 220 | return false;
|
---|
| 221 | }
|
---|
| 222 |
|
---|
[206] | 223 | bool IsMacro() const
|
---|
| 224 | {
|
---|
| 225 | return isMacro;
|
---|
| 226 | }
|
---|
| 227 |
|
---|
| 228 | int GetSecondParmNum() const
|
---|
| 229 | {
|
---|
| 230 | return secondParmNum;
|
---|
| 231 | }
|
---|
| 232 | const Parameters &RealParams() const
|
---|
| 233 | {
|
---|
| 234 | return realParams;
|
---|
| 235 | }
|
---|
| 236 | int GetRealSecondParmNum() const
|
---|
| 237 | {
|
---|
| 238 | return realSecondParmNum;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | void ExportOff(){
|
---|
| 242 | isExport = false;
|
---|
| 243 | }
|
---|
| 244 | bool IsExport() const
|
---|
| 245 | {
|
---|
| 246 | return isExport;
|
---|
| 247 | }
|
---|
| 248 | void ThisIsSystemProc() const
|
---|
| 249 | {
|
---|
| 250 | isSystem = true;
|
---|
| 251 | }
|
---|
| 252 | bool IsSystem() const
|
---|
| 253 | {
|
---|
| 254 | return isSystem;
|
---|
| 255 | }
|
---|
| 256 | void ThisIsAutoGenerationProc() const
|
---|
| 257 | {
|
---|
| 258 | isAutoGeneration = true;
|
---|
| 259 | }
|
---|
| 260 | bool IsAutoGeneration() const
|
---|
| 261 | {
|
---|
| 262 | return isAutoGeneration;
|
---|
| 263 | }
|
---|
| 264 | void CompleteCompile() const
|
---|
| 265 | {
|
---|
| 266 | isCompiled = true;
|
---|
| 267 | }
|
---|
| 268 | void KillCompileStatus() const
|
---|
| 269 | {
|
---|
| 270 | isCompiled = false;
|
---|
| 271 | }
|
---|
| 272 | bool IsCompiled() const
|
---|
| 273 | {
|
---|
| 274 | return isCompiled;
|
---|
| 275 | }
|
---|
| 276 | bool IsDestructor() const
|
---|
| 277 | {
|
---|
| 278 | return ( GetName()[0] == '~' );
|
---|
| 279 | }
|
---|
| 280 |
|
---|
| 281 | // バイナリコード位置とサイズ
|
---|
| 282 | DWORD GetBeginOpAddress() const
|
---|
| 283 | {
|
---|
| 284 | return beginOpAddress;
|
---|
| 285 | }
|
---|
| 286 | void SetBeginOpAddress( DWORD beginOpAddress ) const
|
---|
| 287 | {
|
---|
| 288 | this->beginOpAddress = beginOpAddress;
|
---|
| 289 | }
|
---|
| 290 | DWORD GetEndOpAddress() const
|
---|
| 291 | {
|
---|
| 292 | return endOpAddress;
|
---|
| 293 | }
|
---|
| 294 | void SetEndOpAddress( DWORD endOpAddress ) const
|
---|
| 295 | {
|
---|
| 296 | this->endOpAddress = endOpAddress;
|
---|
| 297 | }
|
---|
| 298 | int GetCodeSize() const
|
---|
| 299 | {
|
---|
| 300 | return endOpAddress - beginOpAddress;
|
---|
| 301 | }
|
---|
| 302 |
|
---|
[208] | 303 | virtual const NamespaceScopes &GetNamespaceScopes() const;
|
---|
[206] | 304 | const NamespaceScopesCollection &GetImportedNamespaces() const;
|
---|
| 305 |
|
---|
| 306 | Variables &GetLocalVars() const
|
---|
| 307 | {
|
---|
| 308 | return localVars;
|
---|
| 309 | }
|
---|
| 310 |
|
---|
| 311 | int GetId() const
|
---|
| 312 | {
|
---|
| 313 | return id;
|
---|
| 314 | }
|
---|
| 315 |
|
---|
[225] | 316 | NativeCode &GetNativeCode()
|
---|
| 317 | {
|
---|
| 318 | return nativeCode;
|
---|
| 319 | }
|
---|
| 320 |
|
---|
[206] | 321 | std::string GetFullName() const;
|
---|
| 322 |
|
---|
| 323 | bool IsVirtual() const;
|
---|
| 324 |
|
---|
| 325 | void SetParentClass( const CClass *pParentClass ){
|
---|
| 326 | this->pParentClass = pParentClass;
|
---|
| 327 | }
|
---|
| 328 | const CClass *GetParentClassPtr() const
|
---|
| 329 | {
|
---|
| 330 | return pParentClass;
|
---|
| 331 | }
|
---|
| 332 | const CClass &GetParentClass() const
|
---|
| 333 | {
|
---|
| 334 | return *pParentClass;
|
---|
| 335 | }
|
---|
| 336 | bool HasParentClass() const
|
---|
| 337 | {
|
---|
| 338 | return ( pParentClass != NULL );
|
---|
| 339 | }
|
---|
[208] | 340 | bool IsGlobalProcedure() const
|
---|
| 341 | {
|
---|
| 342 | return ( pParentClass == NULL );
|
---|
| 343 | }
|
---|
[206] | 344 | void SetMethod( CMethod *pMethod ){
|
---|
| 345 | this->pMethod = pMethod;
|
---|
| 346 | }
|
---|
| 347 |
|
---|
| 348 | bool SetParamsAndReturnType( const char *sourceOfParams, int nowLine, bool isStatic );
|
---|
| 349 |
|
---|
| 350 |
|
---|
| 351 |
|
---|
| 352 | /////////////////////////////////////////////////////////////////
|
---|
| 353 | // コンパイル中の関数を管理
|
---|
| 354 | /////////////////////////////////////////////////////////////////
|
---|
| 355 | private:
|
---|
| 356 | static const UserProc *pCompilingUserProc;
|
---|
| 357 | public:
|
---|
| 358 | static void CompileStartForGlobalArea(){
|
---|
| 359 | pCompilingUserProc = NULL;
|
---|
| 360 | }
|
---|
| 361 | static void CompileStartForUserProc( const UserProc *pUserProc ){
|
---|
| 362 | pCompilingUserProc = pUserProc;
|
---|
| 363 | }
|
---|
| 364 | static bool IsGlobalAreaCompiling(){
|
---|
| 365 | return ( pCompilingUserProc == NULL );
|
---|
| 366 | }
|
---|
| 367 | static bool IsLocalAreaCompiling(){
|
---|
| 368 | return ( pCompilingUserProc != NULL );
|
---|
| 369 | }
|
---|
| 370 | static const UserProc &CompilingUserProc(){
|
---|
| 371 | return *pCompilingUserProc;
|
---|
| 372 | }
|
---|
[184] | 373 | };
|
---|
| 374 |
|
---|
[206] | 375 | class UserProcs : public Jenga::Common::Hashmap<UserProc>
|
---|
[184] | 376 | {
|
---|
[206] | 377 | std::vector<std::string> macroNames;
|
---|
| 378 |
|
---|
| 379 | // XMLシリアライズ用
|
---|
| 380 | private:
|
---|
| 381 | friend class boost::serialization::access;
|
---|
| 382 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
| 383 | {
|
---|
| 384 | trace_for_serialize( "serializing - UserProcs" );
|
---|
| 385 |
|
---|
| 386 | ar & boost::serialization::make_nvp("Hashmap_UserProcImpl",
|
---|
| 387 | boost::serialization::base_object<Jenga::Common::Hashmap<UserProc>>(*this));
|
---|
| 388 | ar & BOOST_SERIALIZATION_NVP( macroNames );
|
---|
| 389 | }
|
---|
| 390 |
|
---|
| 391 |
|
---|
[184] | 392 | public:
|
---|
[206] | 393 | UserProcs()
|
---|
[184] | 394 | {
|
---|
| 395 | }
|
---|
[206] | 396 | ~UserProcs()
|
---|
| 397 | {
|
---|
| 398 | }
|
---|
[184] | 399 |
|
---|
[206] | 400 | bool Insert( UserProc *pUserProc, int nowLine );
|
---|
| 401 |
|
---|
| 402 | UserProc *Add( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, char *buffer,int nowLine,bool isVirtual,CClass *pobj_c, bool isStatic);
|
---|
| 403 |
|
---|
| 404 | void EnumGlobalProcs( const char *simpleName, const char *localName, std::vector<const UserProc *> &subs );
|
---|
| 405 | };
|
---|
| 406 |
|
---|
[209] | 407 | class DllProc : public Procedure, public Jenga::Common::ObjectInHashmap<DllProc>
|
---|
[206] | 408 | {
|
---|
| 409 | string dllFileName;
|
---|
| 410 | string alias;
|
---|
| 411 | int lookupAddress;
|
---|
| 412 |
|
---|
| 413 | // XMLシリアライズ用
|
---|
| 414 | private:
|
---|
| 415 | friend class boost::serialization::access;
|
---|
| 416 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
| 417 | {
|
---|
| 418 | trace_for_serialize( "serializing - DllProc" );
|
---|
| 419 |
|
---|
| 420 | ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Procedure );
|
---|
| 421 | ar & BOOST_SERIALIZATION_NVP( dllFileName );
|
---|
| 422 | ar & BOOST_SERIALIZATION_NVP( alias );
|
---|
| 423 | ar & BOOST_SERIALIZATION_NVP( lookupAddress );
|
---|
| 424 | }
|
---|
| 425 |
|
---|
| 426 | public:
|
---|
| 427 | // ハッシュリスト用
|
---|
| 428 | DllProc *pNextData;
|
---|
| 429 |
|
---|
[210] | 430 | DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias )
|
---|
| 431 | : Procedure( namespaceScopes, name, kind, isCdecl )
|
---|
| 432 | , dllFileName( dllFileName )
|
---|
| 433 | , alias( alias )
|
---|
| 434 | , lookupAddress( 0 )
|
---|
| 435 | , pNextData( NULL )
|
---|
[206] | 436 | {
|
---|
| 437 | }
|
---|
[210] | 438 | DllProc()
|
---|
| 439 | {
|
---|
| 440 | }
|
---|
[209] | 441 | ~DllProc()
|
---|
| 442 | {
|
---|
| 443 | }
|
---|
[206] | 444 |
|
---|
[209] | 445 | virtual const std::string &GetKeyName() const
|
---|
| 446 | {
|
---|
| 447 | return GetName();
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 | virtual bool IsDuplication( const DllProc *pDllProc ) const
|
---|
| 451 | {
|
---|
| 452 | if( pDllProc->IsEqualSymbol( *this )
|
---|
| 453 | && this->Params().Equals( pDllProc->Params() ) )
|
---|
| 454 | {
|
---|
| 455 | return true;
|
---|
| 456 | }
|
---|
| 457 | return false;
|
---|
| 458 | }
|
---|
| 459 |
|
---|
[206] | 460 | const string &GetDllFileName() const
|
---|
| 461 | {
|
---|
| 462 | return dllFileName;
|
---|
| 463 | }
|
---|
| 464 | const string &GetAlias() const
|
---|
| 465 | {
|
---|
| 466 | return alias;
|
---|
| 467 | }
|
---|
| 468 |
|
---|
| 469 | void SetLookupAddress( int lookupAddress ){
|
---|
| 470 | this->lookupAddress = lookupAddress;
|
---|
| 471 | }
|
---|
| 472 | int GetLookupAddress() const
|
---|
| 473 | {
|
---|
| 474 | return lookupAddress;
|
---|
| 475 | }
|
---|
| 476 |
|
---|
| 477 | bool SetParamsAndReturnType( const char *sourceOfParams, int nowLine );
|
---|
[184] | 478 | };
|
---|
[209] | 479 | class DllProcs : public Jenga::Common::Hashmap<DllProc>
|
---|
| 480 | {
|
---|
| 481 | // XMLシリアライズ用
|
---|
| 482 | private:
|
---|
| 483 | friend class boost::serialization::access;
|
---|
| 484 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
| 485 | {
|
---|
| 486 | trace_for_serialize( "serializing - DllProcs" );
|
---|
[184] | 487 |
|
---|
[209] | 488 | ar & boost::serialization::make_nvp("Hashmap_DllProc",
|
---|
| 489 | boost::serialization::base_object<Jenga::Common::Hashmap<DllProc>>(*this));
|
---|
| 490 | }
|
---|
| 491 |
|
---|
| 492 | public:
|
---|
| 493 | void Add(const NamespaceScopes &namespaceScopes, char *buffer,int nowLine);
|
---|
| 494 | };
|
---|
| 495 |
|
---|
| 496 | void CollectProcedures( const BasicSource &source, UserProcs &userProcs, DllProcs &dllProcs );
|
---|
| 497 |
|
---|
[206] | 498 | class ProcPointer : public Procedure
|
---|
[184] | 499 | {
|
---|
[206] | 500 | // XMLシリアライズ用
|
---|
| 501 | private:
|
---|
| 502 | friend class boost::serialization::access;
|
---|
| 503 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
| 504 | {
|
---|
| 505 | trace_for_serialize( "serializing - ProcPointer" );
|
---|
| 506 |
|
---|
| 507 | ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Procedure );
|
---|
| 508 | }
|
---|
| 509 |
|
---|
[184] | 510 | public:
|
---|
[206] | 511 | ProcPointer( Kind kind )
|
---|
[208] | 512 | : Procedure( NamespaceScopes(), std::string(), kind, false )
|
---|
[184] | 513 | {
|
---|
| 514 | }
|
---|
[206] | 515 | ProcPointer()
|
---|
| 516 | {
|
---|
| 517 | }
|
---|
| 518 | ~ProcPointer(){}
|
---|
[184] | 519 |
|
---|
| 520 | virtual bool SetParamsAndReturnType( const char *sourceOfParams, int nowLine );
|
---|
| 521 | };
|
---|
| 522 |
|
---|
[206] | 523 | class ProcPointers : public vector<ProcPointer *>
|
---|
[184] | 524 | {
|
---|
[206] | 525 | // XMLシリアライズ用
|
---|
| 526 | private:
|
---|
| 527 | friend class boost::serialization::access;
|
---|
| 528 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
| 529 | {
|
---|
| 530 | trace_for_serialize( "serializing - ProcPointers" );
|
---|
| 531 |
|
---|
| 532 | ar & boost::serialization::make_nvp("vector_ProcPointer",
|
---|
| 533 | boost::serialization::base_object<vector<ProcPointer *>>(*this));
|
---|
| 534 | }
|
---|
| 535 |
|
---|
[184] | 536 | public:
|
---|
[206] | 537 | ProcPointers()
|
---|
[184] | 538 | {
|
---|
| 539 | }
|
---|
[206] | 540 | ~ProcPointers()
|
---|
[184] | 541 | {
|
---|
| 542 | Clear();
|
---|
| 543 | }
|
---|
| 544 |
|
---|
| 545 | virtual int Add( const string &typeExpression );
|
---|
| 546 | virtual void Clear();
|
---|
| 547 | };
|
---|