Changeset 637 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/Class.cpp
- Timestamp:
- Jun 11, 2008, 10:10:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/Class.cpp
r636 r637 2 2 3 3 4 CClass::CClass( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const std::string &name)5 : ClassPrototype( namespaceScopes, name)4 CClass::CClass( const Symbol &symbol, const NamespaceScopesCollection &importedNamespaces ) 5 : ClassPrototype( symbol ) 6 6 , importedNamespaces( importedNamespaces ) 7 7 , classType( Class ) … … 21 21 } 22 22 23 CClass::CClass( const NamespaceScopes &namespaceScopes, 23 CClass::CClass( 24 const Symbol &symbol, 24 25 const NamespaceScopesCollection &importedNamespaces, 25 const std::string &name,26 26 ClassType classType, 27 27 const GenericTypes &formalGenericTypes, … … 31 31 int vtblNum, 32 32 int fixedAlignment ) 33 : ClassPrototype( namespaceScopes, name)33 : ClassPrototype( symbol ) 34 34 , importedNamespaces( importedNamespaces ) 35 35 , classType( classType ) … … 868 868 } 869 869 } 870 871 bool CClass::Resolve() 872 { 873 // TODO: Resolve 874 return true; 875 }
Note:
See TracChangeset
for help on using the changeset viewer.