summaryrefslogtreecommitdiff
path: root/src/lib/eolian_cxx/grammar/header.hpp
blob: 29435404dd8d6fd073e9d7c787591efe0870bead (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
38
39
40
#ifndef EOLIAN_CXX_HEADER_HH
#define EOLIAN_CXX_HEADER_HH

#include "header_guards.hpp"
#include "eps.hpp"
#include "string.hpp"
#include "sequence.hpp"
#include "kleene.hpp"
#include "header_include_directive.hpp"
#include "base_class_definition.hpp"
#include "class_definition.hpp"
#include "class_declaration.hpp"
#include "implementation_include_directive.hpp"

namespace efl { namespace eolian { namespace grammar {

auto class_header =
  header_guards // class name
  [
       "#include <Eo.h>\n"
       "\nextern \"C\" {\n"
    << *header_include_directive // sequence<string>
    << "}\n"
    << "#include <Eina.hh>\n"
       "#include <Eo.hh>\n"
    << *header_include_directive // sequence<string>
    << *class_declaration          // sequence<class> | class
    << *class_forward_declaration          // sequence<class> | class
    <<  string                   // extra header <string>
    << "\nnamespace eo_cxx {\n"
    << *base_class_definition      // sequence<class> | class
    << "}\n"
    << *class_definition           // sequence<class> | class
    // << *implementation_include_directive
  ]
  ;

} } }

#endif