blob: 2afd9f08c5b3f3c064e52cb268d226beaf47a1c7 [file] [log] [blame]
Carl Shapiro1fb86202011-06-27 17:43:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#ifndef ART_SRC_RUNTIME_H_
4#define ART_SRC_RUNTIME_H_
5
6namespace art {
7
8class 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
18namespace r = art;
19
20#endif // ART_SRC_RUNTIME_H_