blob: 1b1cf0a5899e58f0a563e86107176be5837742e4 [file] [log] [blame]
#ifndef _SLANG_COMPILER_RS_EXPORT_VAR_HPP
# define _SLANG_COMPILER_RS_EXPORT_VAR_HPP
#include "llvm/ADT/StringRef.h" /* for class llvm::StringRef */
#include "clang/AST/Decl.h" /* for clang::VarDecl */
#include <string>
namespace slang {
using namespace clang;
class RSContext;
class RSExportType;
class RSExportVar {
friend class RSContext;
private:
RSContext* mContext;
std::string mName;
const RSExportType* mET;
RSExportVar(RSContext* Context, const VarDecl* VD, const RSExportType* ET);
public:
inline const std::string& getName() const { return mName; }
inline const RSExportType* getType() const { return mET; }
inline RSContext* getRSContext() const { return mContext; }
}; /* RSExportVar */
} /* namespace slang */
#endif /* _SLANG_COMPILER_RS_EXPORT_VAR_HPP */