summaryrefslogtreecommitdiff
path: root/utils/TableGen/TableGenBackend.h
blob: b9e8c49d4c5a978f40af8b7fae4dc32c8cf19819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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