Ignore:
Timestamp:
Aug 10, 2007, 3:16:42 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/Procedure.h

    r270 r271  
    5858
    5959public:
    60     bool isTargetObjectModule;
    6160    Procedure( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl )
    6261        : Symbol( namespaceScopes, name )
     
    6564        , isUsing( false )
    6665        , codePos( -1 )
    67         , isTargetObjectModule( true )
    6866    {
    6967    }
    7068    Procedure()
    71         : isTargetObjectModule( true )
    7269    {
    7370    }
     
    553550    }
    554551
    555     virtual int Add( const string &typeExpression );
    556     virtual void Clear();
    557 };
     552    int Add( const string &typeExpression );
     553    void Clear();
     554    void PullOutAll()
     555    {
     556        clear();
     557    }
     558};
Note: See TracChangeset for help on using the changeset viewer.