]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Embedding: display a pin at the top left corner of embedded figures
[lyx.git] / src / insets / ExternalTemplate.h
index 8c258d6a6433847040b63bf9d4e60a4690dd2370..7afc65715ba7ad5cd75e15ffac56053f42d23382 100644 (file)
 
 #include "ExternalTransforms.h"
 
-#include <boost/utility.hpp>
-
-class LyXLex;
+#include <boost/noncopyable.hpp>
 
 namespace lyx {
+
+namespace support { class FileName; }
+
+class Lexer;
+
 namespace external {
 
 class Template {
@@ -27,7 +30,7 @@ public:
        /// We have to have default commands for safety reasons!
        Template();
        ///
-       void readTemplate(LyXLex &);
+       void readTemplate(Lexer &);
        ///
        void dumpFormats(std::ostream &) const;
 
@@ -61,7 +64,7 @@ public:
        public:
                Format();
                ///
-               void readFormat(LyXLex &);
+               void readFormat(Lexer &);
 
                /// The text that should be inserted into the exported file
                std::string product;
@@ -116,7 +119,7 @@ public:
        std::string const getPreambleDefByName(std::string const & name) const;
 private:
        TemplateManager();
-       void readTemplates(std::string const & path);
+       void readTemplates(support::FileName const & path);
        void dumpTemplates(std::ostream &) const;
        void dumpPreambleDefs(std::ostream &) const;