source: dev/BasicCompiler_Common/Schedule.h@ 33

Last change on this file since 33 was 33, checked in by dai_9181, 17 years ago
File size: 496 bytes
Line 
1
2
3/////////////////////////////////////////////
4// ステートメント スケジュール
5/////////////////////////////////////////////
6
7/*
8
9class CScopeStatement{
10 DWORD *pBreakSchedule;
11 int count;
12 int BaseScopeLevel;
13
14 CScopeStatement **ppBackup;
15 int nBackupCount;
16
17 SCOPE_TYPE Type;
18
19public:
20
21 CScopeStatement();
22 ~CScopeStatement();
23
24 void Start( SCOPE_TYPE Type );
25 void End();
26
27 void Break();
28};
29class CForScope:public CScopeStatement{
30public:
31 void Start();
32};
33*/
Note: See TracBrowser for help on using the repository browser.