blob: 2afd9f08c5b3f3c064e52cb268d226beaf47a1c7 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#ifndef ART_SRC_RUNTIME_H_
#define ART_SRC_RUNTIME_H_
namespace art {
class Runtime {
public:
static bool Startup();
static void Shutdown();
static void Compile(const char* filename);
};
} // namespace art
namespace r = art;
#endif // ART_SRC_RUNTIME_H_