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

Last change on this file since 267 was 267, checked in by dai_9181, 17 years ago
File size: 347 bytes
Line 
1#pragma once
2
3#include <string>
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 std::string baseProjectDirPath;
21 };
22
23 static bool isFullCompile;
24};
Note: See TracBrowser for help on using the repository browser.