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 |
Line | |
---|---|
1 | #pragma once |
2 | |
3 | #include <string> |
4 | |
5 | class Smoothie{ |
6 | static bool isUnicode; |
7 | public: |
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.