]> git.lyx.org Git - features.git/blobdiff - src/graphics/PreviewLoader.h
Replace LString.h with support/std_string.h,
[features.git] / src / graphics / PreviewLoader.h
index b0238474e7849ffaf36d2e25496261ff4f3de6d0..345e72c72151218adde3a540977c0aa7ea3fa775 100644 (file)
@@ -1,33 +1,32 @@
 // -*- C++ -*-
 /**
- *  \file PreviewLoader.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * \file PreviewLoader.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming <leeming@lyx.org>
+ * \author Angus Leeming
  *
- *  grfx::PreviewLoader collects latex snippets together. Then, on a
- *  startLoading() call, these are dumped to file and processed, converting
- *  each snippet to a separate bitmap image file. Once a bitmap file is ready
- *  to be loaded back into LyX, the PreviewLoader emits a signal to inform
- *  the initiating process.
+ * Full author contact details are available in file CREDITS.
+ *
+ * lyx::graphics::PreviewLoader collects latex snippets together. Then, on a
+ * startLoading() call, these are dumped to file and processed, converting
+ * each snippet to a separate bitmap image file. Once a bitmap file is ready
+ * to be loaded back into LyX, the PreviewLoader emits a signal to inform
+ * the initiating process.
  */
 
 #ifndef PREVIEWLOADER_H
 #define PREVIEWLOADER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "LString.h"
+#include "support/std_string.h"
 #include <boost/utility.hpp>
 #include <boost/scoped_ptr.hpp>
 #include <boost/signals/signal1.hpp>
 
 class Buffer;
 
-namespace grfx {
+namespace lyx {
+namespace graphics {
 
 class PreviewImage;
 
@@ -73,7 +72,7 @@ public:
 
        /** Connect and you'll be informed when the bitmap image file
         *  has been created and is ready for loading through
-        *  grfx::PreviewImage::image().
+        *  lyx::graphics::PreviewImage::image().
         */
        typedef boost::signal1<void, PreviewImage const &>::slot_type slot_type;
        ///
@@ -94,6 +93,7 @@ private:
        boost::scoped_ptr<Impl> const pimpl_;
 };
 
-} // namespace grfx
+} // namespace graphics
+} // namespace lyx
 
 #endif // PREVIEWLOADER_H