diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2011-02-17 13:43:53 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2011-02-17 13:43:53 +0100 |
| commit | 4291a6aac9ee4a1c79bc24c40d4c558bf88d3e93 (patch) | |
| tree | 14c4cf5ece96ec9a63cd7080fa846f86de4bb070 /src/generators/latex/text_g.h | |
| parent | c950235e58db6b500d83918ea4f57340025ffee4 (diff) | |
Explicit link support added.
Diffstat (limited to 'src/generators/latex/text_g.h')
| -rw-r--r-- | src/generators/latex/text_g.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/generators/latex/text_g.h b/src/generators/latex/text_g.h index a2174e7..2d26a4d 100644 --- a/src/generators/latex/text_g.h +++ b/src/generators/latex/text_g.h @@ -16,15 +16,18 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifndef _MPPDOWN_LATEX_TEXT_G #define _MPPDOWN_LATEX_TEXT_G #include <boost/spirit/include/karma.hpp> +#include <boost/spirit/include/phoenix.hpp> #include <boost/spirit/include/support_standard_wide.hpp> #include "../../elements.h" namespace ka = boost::spirit::karma; +namespace ph = boost::phoenix; namespace latex { struct text_g : ka::grammar<oiterator, text_t()> { ka::rule<oiterator, text_t()> text_; ka::rule<oiterator, stext_t()> stext_; + ka::rule<oiterator, pstext_t()> pstext_; ka::rule<oiterator, std::wstring()> ptext_; text_g(); |
