blob: 8faf0e8c9caa9068d34435a7cd377ab6ff0dc7e6 [file] [log] [blame]
//===---- CompilingUnit.h - A compilation unit to compile source files ----===//
//
// The VMKit project
//
// This file is distributed under the University of Pierre et Marie Curie
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// A compilation unit contains a module and a module provider to compile source
// files of a virtual machine, e.g .java files in Java.
//
//===----------------------------------------------------------------------===//
#ifndef MVM_COMPILATION_UNIT_H
#define MVM_COMPILATION_UNIT_H
#include "mvm/Object.h"
namespace llvm {
class Module;
class ModuleProvider;
}
namespace mvm {
class CompilationUnit : public mvm::Object {
public:
llvm::Module* TheModule;
};
}
#endif