Ignore:
Timestamp:
Jun 11, 2008, 10:10:26 PM (16 years ago)
Author:
dai_9181
Message:

リンカの依存関係解決モジュールを製作中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ab_common/src/Lexical/Class.cpp

    r636 r637  
    22
    33
    4 CClass::CClass( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const std::string &name )
    5     : ClassPrototype( namespaceScopes, name )
     4CClass::CClass( const Symbol &symbol, const NamespaceScopesCollection &importedNamespaces )
     5    : ClassPrototype( symbol )
    66    , importedNamespaces( importedNamespaces )
    77    , classType( Class )
     
    2121}
    2222
    23 CClass::CClass( const NamespaceScopes &namespaceScopes,
     23CClass::CClass(
     24    const Symbol &symbol,
    2425    const NamespaceScopesCollection &importedNamespaces,
    25     const std::string &name,
    2626    ClassType classType,
    2727    const GenericTypes &formalGenericTypes,
     
    3131    int vtblNum,
    3232    int fixedAlignment )
    33     : ClassPrototype( namespaceScopes, name )
     33    : ClassPrototype( symbol )
    3434    , importedNamespaces( importedNamespaces )
    3535    , classType( classType )
     
    868868    }
    869869}
     870
     871bool CClass::Resolve()
     872{
     873    // TODO: Resolve
     874    return true;
     875}
Note: See TracChangeset for help on using the changeset viewer.