source:
dev/BasicCompiler_Common/Schedule.cpp@
33
| Last change on this file since 33 was 33, checked in by , 19 years ago | |
|---|---|
| File size: 385 bytes | |
| Line | |
|---|---|
| 1 | /*#include "common.h" |
| 2 | |
| 3 | |
| 4 | //共通 |
| 5 | CScopeStatement CommonScopeStatement; |
| 6 | |
| 7 | |
| 8 | CScopeStatement::CScopeStatement(){ |
| 9 | } |
| 10 | CScopeStatement::~CScopeStatement(){ |
| 11 | } |
| 12 | |
| 13 | void CScopeStatement::Start( SCOPE_TYPE Type ){ |
| 14 | this->Type = Type; |
| 15 | } |
| 16 | void CScopeStatement::End(){ |
| 17 | } |
| 18 | |
| 19 | void CScopeStatement::Break(){ |
| 20 | } |
| 21 | |
| 22 | |
| 23 | void CForScope::Start(){ |
| 24 | CScopeStatement::Start( SCOPE_TYPE_FOR ); |
| 25 | } |
| 26 | */ |
Note:
See TracBrowser
for help on using the repository browser.
