source: dev/trunk/jenga/include/smoothie/Smoothie.h@ 249

Last change on this file since 249 was 249, checked in by dai_9181, 17 years ago

BreakPertialScheduleをリファクタリング

File size: 374 bytes
Line 
1#pragma once
2
3#include "Source.h"
4
5class Smoothie{
6 static bool isUnicode;
7public:
8
9 static bool IsUnicode()
10 {
11 return isUnicode;
12 }
13 static void SetUnicodeMark( bool isUnicode )
14 {
15 Smoothie::isUnicode = isUnicode;
16 }
17
18 class Lexical{
19 public:
20 static string baseProjectDirPath;
21 static BasicSource source;
22 };
23
24 static bool isFullCompile;
25};
Note: See TracBrowser for help on using the repository browser.