aboutsummaryrefslogtreecommitdiff
path: root/odb/parser.hxx
blob: d31a808ad79a4f3a72d1a1ca99ec43adf84751f9 (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
27
28
29
30
31
32
33
34
35
36
37
// file      : odb/parser.hxx
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#ifndef ODB_PARSER_HXX
#define ODB_PARSER_HXX

#include <odb/gcc.hxx>

#include <memory>  // std::auto_ptr

#include <odb/pragma.hxx>
#include <odb/options.hxx>
#include <odb/semantics/unit.hxx>

class parser
{
public:
  class failed {};

  parser (options const&, loc_pragmas&, ns_loc_pragmas&, decl_pragmas&);

  std::auto_ptr<semantics::unit>
  parse (tree global_scope, semantics::path const& main_file);

private:
  parser (parser const&);

  parser&
  operator= (parser const&);

private:
  class impl;
  std::auto_ptr<impl> impl_;
};

#endif // ODB_PARSER_HXX