Awali
Another Weighted Automata library
doc_entries.hh
Go to the documentation of this file.
1 // This file is part of Awali.
2 // Copyright 2016-2022 Sylvain Lombardy, Victor Marsault, Jacques Sakarovitch
3 //
4 // Awali is a free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 
17 
18 #ifndef AWALI_COMMON_DOCTSRING_DOCSTRINGS_HH
19 #define AWALI_COMMON_DOCTSRING_DOCSTRINGS_HH
20 
21 #include <vector>
22 #include <string>
23 
24 // Do not forget to include the entry files, or the compiler
25 // will cry and you wont understand why
28 // #include <awali/common/docstring/exp_to_aut.hh>
32 
33 namespace awali { namespace docstring {
34 
35  static std::string toescape = "\\<>[]\"";
36 
37  static std::vector<entry_t> entries =
38  {
40 // exp_to_aut,
42  ratexp,
43  reduction
44  };
45 
46 }}
47 
48 
49 
50 
51 #endif
static std::string toescape
Definition: doc_entries.hh:35
static std::vector< entry_t > entries
Definition: doc_entries.hh:37
static entry_t json_format
Definition: json_format.hh:29
static entry_t ratexp
Definition: ratexp.hh:29
static entry_t reduction
Definition: reduction.hh:41
static entry_t eps_removal
Definition: eps_removal.hh:28
Main namespace of Awali.
Definition: ato.hh:22