]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsConverter.h
Removed all redundant using directives from the source.
[lyx.git] / src / graphics / GraphicsConverter.h
index c07fd9fdd076ed2c934ad35bd8d02de6c88c4bb0..282730bfb3ccbfddeabc37957a2a5d6e7e22d05a 100644 (file)
@@ -1,32 +1,29 @@
 // -*- C++ -*-
 /**
- *  \file GraphicsConverter.h
+ * \file GraphicsConverter.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- *  \author Angus Leeming 
+ * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  *
- *  The controller of a conversion process from file AA of format A to
- *  file BB of format B.
- *  Once finished, a signal is emitted to inform any listeners (connected
- *  through the connect() method).
+ * The controller of a conversion process from file AA of format A to
+ * file BB of format B.
+ * Once finished, a signal is emitted to inform any listeners (connected
+ * through the connect() method).
  */
 
 #ifndef GRAPHICSCONVERTER_H
 #define GRAPHICSCONVERTER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "LString.h"
+#include "support/std_string.h"
 #include <boost/signals/signal1.hpp>
 #include <boost/scoped_ptr.hpp>
 #include <boost/utility.hpp>
 
-namespace grfx {
+namespace lyx {
+namespace graphics {
 
 class Converter : boost::noncopyable {
 public:
@@ -69,6 +66,7 @@ private:
        boost::scoped_ptr<Impl> const pimpl_;
 };
 
-} // namespace grfx
+} // namespace graphics
+} // namespace lyx
 
 #endif // GRAPHICSCONVERTER_H