Changeset 339 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Oct 3, 2007, 3:42:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Delegate.h
r325 r339 6 6 class Delegate : public Procedure, public Jenga::Common::ObjectInHashmap<Delegate> 7 7 { 8 Parameters dynamicParams; 9 8 10 public: 9 11 Delegate( const NamespaceScopes &namespaceScopes, const std::string &name, Procedure::Kind procKind, const char *paramStr, const Type &returnType, int nowLine ); … … 16 18 return GetName(); 17 19 } 20 21 const Parameters &GetDynamicParams() const 22 { 23 return dynamicParams; 24 } 18 25 }; 19 26
Note:
See TracChangeset
for help on using the changeset viewer.