source: dev/BasicCompiler_Common/Schedule.cpp@ 33

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