Changeset 325 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Sep 25, 2007, 8:56:38 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Class.h
r299 r325 10 10 class UserProc; 11 11 class CClass; 12 class Delegate; 12 13 13 14 class InheritedInterface … … 366 367 } 367 368 369 // デリゲート情報を取得 370 const ::Delegate &GetDelegate() const; 371 368 372 // vtblに存在する仮想関数の数 369 373 int GetVtblNum() const -
trunk/abdev/BasicCompiler_Common/include/Delegate.h
r322 r325 2 2 3 3 #include <Hashmap.h> 4 #include < Symbol.h>4 #include <Procedure.h> 5 5 6 6 class Delegate : public Procedure, public Jenga::Common::ObjectInHashmap<Delegate> -
trunk/abdev/BasicCompiler_Common/include/Parameter.h
r322 r325 146 146 147 147 bool Analyze( const char *sourceOfParams, int nowLine ); 148 149 std::string GetString() const; 148 150 };
Note:
See TracChangeset
for help on using the changeset viewer.