llvm/llvm/include/llvm/SandboxIR/Module.h

//===- Module.h -------------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_SANDBOXIR_MODULE_H
#define LLVM_SANDBOXIR_MODULE_H

#include "llvm/ADT/STLExtras.h"
#include "llvm/IR/Module.h"
#include <string>

namespace llvm {

class DataLayout;

namespace sandboxir {

class Context;
class Function;
class GlobalVariable;
class Type;
class Constant;
class GlobalAlias;
class GlobalIFunc;

/// In SandboxIR the Module is mainly used to access the list of global objects.
class Module {};

} // namespace sandboxir
} // namespace llvm

#endif // LLVM_SANDBOXIR_MODULE_H