Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame^] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | #ifndef ART_SRC_RUNTIME_H_ | ||||
4 | #define ART_SRC_RUNTIME_H_ | ||||
5 | |||||
6 | namespace art { | ||||
7 | |||||
8 | class Runtime { | ||||
9 | public: | ||||
10 | static bool Startup(); | ||||
11 | static void Shutdown(); | ||||
12 | |||||
13 | static void Compile(const char* filename); | ||||
14 | }; | ||||
15 | |||||
16 | } // namespace art | ||||
17 | |||||
18 | namespace r = art; | ||||
19 | |||||
20 | #endif // ART_SRC_RUNTIME_H_ |