diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2011-09-05 19:15:38 +0200 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2011-09-05 19:15:38 +0200 |
| commit | 8487056e8119daeaac17f89125942850f6206e24 (patch) | |
| tree | 8eddf7d2c840d91ccb3bb320c0bff02d8b9f0a30 /src/main.cpp | |
| parent | 1c5bf1893f960e73b389831af4a225c32ff1b132 (diff) | |
Unified how generators and parsers are organized.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 92a0f04..0f2a157 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,7 +20,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <iostream> #include <string> #include "elements.h" -#include "generators/latex_g.h" +#include "generators/latex/document_g.h" #include "parser/document_p.h" namespace ka = boost::spirit::karma; @@ -86,7 +86,7 @@ int main(int argc, char** argv) { return 1; } - latex_g generator; + latex::document_g generator; wstring output; oiterator sink(output); |
