source:
dev/trunk/jenga/include/smoothie/Smoothie.h@
337
Last change on this file since 337 was 267, checked in by , 17 years ago | |
---|---|
File size: 347 bytes |
Rev | Line | |
---|---|---|
[170] | 1 | #pragma once |
2 | ||
[267] | 3 | #include <string> |
[170] | 4 | |
5 | class Smoothie{ | |
[181] | 6 | static bool isUnicode; |
[170] | 7 | public: |
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.