]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/tex2lyx.h
* support/qstring_helpers.h: erase ucs4_to_qstring() method.
[lyx.git] / src / tex2lyx / tex2lyx.h
index 136cce2515d6dacfadec5f074b8270be7b829d65..1560c87d7773b39eeb3d7fd9cba16d6f2e5b69eb 100644 (file)
 #include <vector>
 #include <map>
 
+
+namespace lyx {
+
+namespace support { class FileName; }
+
 class Context;
 
 /// in preamble.C
@@ -94,6 +99,8 @@ extern CommandMap known_commands;
 extern CommandMap known_environments;
 /// Known TeX math environments with arguments that get parsed into LyX mathed.
 extern CommandMap known_math_environments;
+///
+extern bool noweb_mode;
 
 /// path of the master .tex file
 extern std::string getMasterFilePath();
@@ -109,6 +116,9 @@ extern std::string getParentFilePath();
  *  contains a preamble.
  *  \return true if the conversion was successful, else false.
  */
-bool tex2lyx(std::string const & infilename, std::string const & outfilename);
+bool tex2lyx(std::string const & infilename, support::FileName const & outfilename);
+
+
+} // namespace lyx
 
 #endif