]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsImage.C
A bunch of conversion to docstring.
[lyx.git] / src / graphics / GraphicsImage.C
index 1a4a13193b9d4d7b7974d2a67720efa29eb1b2e7..b1d7e60707e09c7e39ad530fa73640e149d05806 100644 (file)
@@ -1,34 +1,31 @@
-/*
+/**
  * \file GraphicsImage.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Baruch Even <baruch.even@writeme.com>
- * \author Angus Leeming <leeming@lyx.org>
- * \author Herbert Voss <voss@lyx.org>
+ * \author Baruch Even
+ * \author Angus Leeming
+ * \author Herbert Voß
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "GraphicsImage.h"
 #include "GraphicsParams.h"
 #include "debug.h"
 
-using std::endl;
-using std::abs;
 
-namespace grfx {
+namespace lyx {
+namespace graphics {
 
 // This is to be connected to a function that will return a new
 // instance of a viable derived class.
-boost::function0<Image::ImagePtr> Image::newImage;
+boost::function<Image::ImagePtr()> Image::newImage;
 
 /// Return the list of loadable formats.
-boost::function0<Image::FormatList> Image::loadableFormats;
+boost::function<Image::FormatList()> Image::loadableFormats;
 
 
 std::pair<unsigned int, unsigned int>
@@ -55,5 +52,5 @@ Image::getScaledDimensions(Params const & params) const
        return std::make_pair(width, height);
 }
 
-} // namespace grfx
-
+} // namespace graphics
+} // namespace lyx