]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/tex2lyx.h
do not hardcode packages loaded by external insets
[lyx.git] / src / tex2lyx / tex2lyx.h
index e1d779a115dbcc229a52e0f228c6167810ab5942..bff05191a8325ac9b90081da357ea83bd8f9daa3 100644 (file)
@@ -84,6 +84,7 @@ std::string join(std::vector<std::string> const & input,
        char const * delim);
 
 bool is_math_env(std::string const & name);
+bool is_display_math_env(std::string const & name);
 char const * const * is_known(std::string const &, char const * const *);
 
 /*!
@@ -115,9 +116,12 @@ std::string active_environment();
 
 enum ArgumentType {
        required,
+       req_group,
        verbatim,
        item,
-       optional
+       optional,
+       opt_group,
+       displaymath,
 };
 
 class FullCommand {