///////////////////////////////////////////// // ステートメント スケジュール ///////////////////////////////////////////// /* class CScopeStatement{ DWORD *pBreakSchedule; int count; int BaseScopeLevel; CScopeStatement **ppBackup; int nBackupCount; SCOPE_TYPE Type; public: CScopeStatement(); ~CScopeStatement(); void Start( SCOPE_TYPE Type ); void End(); void Break(); }; class CForScope:public CScopeStatement{ public: void Start(); }; */