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
RevLine 
[170]1#pragma once
2
[267]3#include <string>
[170]4
5class Smoothie{
[181]6 static bool isUnicode;
[170]7public:
8
[181]9 static bool IsUnicode()
10 {
11 return isUnicode;
12 }
13 static void SetUnicodeMark( bool isUnicode )
14 {
15 Smoothie::isUnicode = isUnicode;
16 }
17
[170]18 class Lexical{
19 public:
[267]20 static std::string baseProjectDirPath;
[170]21 };
22
23 static bool isFullCompile;
24};
Note: See TracBrowser for help on using the repository browser.