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