1
2
3
4
5
6 #ifndef GENDOC_HTML_GRAMMAR_INCLUDED
7 #define GENDOC_HTML_GRAMMAR_INCLUDED
8 #include <gendoc/html/HtmlApi.hpp>
9 #include <string>
10
11 namespace gendoc { namespace html {
12
13 struct Grammar
14 {
15 Grammar(const std::u32string& fileName_, const std::u32string& title_);
16 std::u32string fileName;
17 std::u32string title;
18 };
19
20 } }
21
22 #endif // GENDOC_HTML_GRAMMAR_INCLUDED