X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FPreamble.h;h=ffc9bda03be74575bf9536ee569e5f5a3d2c00a7;hb=c6b17b685a8cc0982a1544d90cdfdb6fba60a2e0;hp=ae5886e08e854c7b92fb3b6d38f46c79c7c5e72a;hpb=bf1006a22c256fd08110bf5d108b670b4370d5f5;p=lyx.git diff --git a/src/tex2lyx/Preamble.h b/src/tex2lyx/Preamble.h index ae5886e08e..ffc9bda03b 100644 --- a/src/tex2lyx/Preamble.h +++ b/src/tex2lyx/Preamble.h @@ -85,6 +85,9 @@ public: void registerAuthor(std::string const & name); /// Get author named \p name (must be registered first) Author const & getAuthor(std::string const & name) const; + /// Get number of arguments of special table column type \c or -1 + /// if no column type \p c exists + int getSpecialTableColumnArguments(char c) const; /// Parses the LaTeX preamble into internal data void parse(Parser & p, std::string const & forceclass, @@ -214,7 +217,10 @@ private: /// void handle_if(Parser & p, bool in_lyx_preamble); + /// AuthorList authors_; + /// special table column types + std::map special_columns_; };