summaryrefslogtreecommitdiff
path: root/utils/TableGen/TableGenBackend.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/TableGenBackend.h')
-rw-r--r--utils/TableGen/TableGenBackend.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/TableGen/TableGenBackend.h b/utils/TableGen/TableGenBackend.h
new file mode 100644
index 0000000000..b9e8c49d4c
--- /dev/null
+++ b/utils/TableGen/TableGenBackend.h
@@ -0,0 +1,26 @@
+//===- TableGenBackend.h - Base class for TableGen Backends -----*- C++ -*-===//
+//
+// The TableGenBackend class is provided as a common interface for all TableGen
+// backends. It provides useful services and an standardized interface.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef TABLEGENBACKEND_H
+#define TABLEGENBACKEND_H
+
+#include <string>
+#include <iosfwd>
+
+struct TableGenBackend {
+
+ // run - All TableGen backends should implement the run method, which should
+ // be the main entry point.
+ virtual void run(std::ostream &OS) = 0;
+
+
+public: // Useful helper routines...
+ void EmitSourceFileHeader(const std::string &Desc, std::ostream &OS) const;
+
+};
+
+#endif