Ignore:
Timestamp:
Jun 17, 2007, 4:44:57 AM (17 years ago)
Author:
dai_9181
Message:

プロジェクト内を整理。jengaライブラリのベースを作成。

Location:
trunk/abdev/BasicCompiler_Common/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Member.cpp

    r138 r159  
    5757
    5858    //イテレータをリセット
    59     extern CDBClass *pobj_DBClass;
     59    extern Classes *pobj_DBClass;
    6060    pobj_DBClass->Iterator_Reset();
    6161
  • trunk/abdev/BasicCompiler_Common/src/Namespace.cpp

    r143 r159  
    103103void NamespaceScopesCollection::Imports( const string &namespaceStr ){
    104104    NamespaceScopes namespaceScopes( namespaceStr );
    105     if( !Smoothie::Meta::namespaceScopesCollection.IsExist( namespaceScopes ) ){
     105    if( !Smoothie::meta.namespaceScopesCollection.IsExist( namespaceScopes ) ){
    106106        SetError(64,namespaceStr.c_str(),cp );
    107107        return;
  • trunk/abdev/BasicCompiler_Common/src/Smoothie.cpp

    r143 r159  
    1919NamespaceScopes Smoothie::Lexical::liveingNamespaceScopes;
    2020
    21 TypeDefCollection Smoothie::Meta::typeDefs;
    22 vector<ProcPointer *> Smoothie::Meta::procPointers;
    23 NamespaceScopesCollection Smoothie::Meta::namespaceScopesCollection;
     21Meta Smoothie::meta;
    2422NamespaceScopesCollection Smoothie::Temp::importedNamespaces;
    25 BlittableTypes Smoothie::Meta::blittableTypes;
    2623
    2724bool Smoothie::isFullCompile = false;
Note: See TracChangeset for help on using the changeset viewer.