]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Context.cpp
pimpl not needed here
[lyx.git] / src / tex2lyx / Context.cpp
index 94bb4668fc5ff6f2677967efec58eedcd55a61d0..ae64f434809d38962696c8b6d534ac52092df109 100644 (file)
 
 #include <config.h>
 
-#include <iostream>
+#include "Context.h"
+#include "Layout.h"
 
 #include "support/lstrings.h"
-#include "Context.h"
+
+#include <iostream>
 
 
 namespace lyx {
@@ -25,7 +27,7 @@ using std::string;
 
 namespace {
 
-void begin_layout(ostream & os, Layout_ptr layout, TeXFont const & font,
+void begin_layout(ostream & os, LayoutPtr const & layout, TeXFont const & font,
                  TeXFont const & normalfont)
 {
        os << "\n\\begin_layout " << to_utf8(layout->name()) << "\n";
@@ -85,7 +87,7 @@ bool Context::empty = true;
 
 Context::Context(bool need_layout_,
                 TextClass const & textclass_,
-                Layout_ptr layout_, Layout_ptr parent_layout_,
+                LayoutPtr layout_, LayoutPtr parent_layout_,
                 TeXFont font_)
        : need_layout(need_layout_),
          need_end_layout(false), need_end_deeper(false),