Changeset 550 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- May 4, 2008, 10:56:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/NativeCode.h
r529 r550 73 73 { 74 74 } 75 Schedule( const ::UserProc *pUserProc, long offset )76 : type( Schedule::UserProc)75 Schedule( Schedule::Type type, const ::UserProc *pUserProc, long offset ) 76 : type( type ) 77 77 , offset( offset ) 78 78 , pUserProc( pUserProc ) … … 114 114 const ::UserProc &GetUserProc() const; 115 115 const ::CClass &GetClass() const; 116 117 void SpecifyAddressOf();118 void SpecifyCatchAddress();119 116 }; 120 117 typedef std::vector<Schedule> Schedules;
Note:
See TracChangeset
for help on using the changeset viewer.