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/Symbol.h

    r215 r271  
    4141
    4242public:
     43    bool isTargetObjectModule;
    4344    Symbol( const NamespaceScopes &namespaceScopes, const string &name )
    4445        : namespaceScopes( namespaceScopes )
    4546        , name( name )
     47        , isTargetObjectModule( true )
    4648    {
    4749    }
     
    5153        : namespaceScopes( symbol.namespaceScopes )
    5254        , name( symbol.name )
     55        , isTargetObjectModule( true )
    5356    {
    5457    }
    5558    Symbol()
     59        : isTargetObjectModule( true )
    5660    {
    5761    }
Note: See TracChangeset for help on using the changeset viewer.