]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.h
ws changes only
[lyx.git] / src / CutAndPaste.h
index 615222ce2bc887963b227cec8eac4c05518d4763..0c753fbadc28758764f9b268cf10f47afb56c1fe 100644 (file)
@@ -1,33 +1,36 @@
 // -*- C++ -*-
-/* \file CutAndPaste.C
+/**
+ * \file CutAndPaste.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Jurgen Vigna
+ * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
+ * \author Alfredo Braunstein
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CUTANDPASTE_H
 #define CUTANDPASTE_H
 
+#include "ParagraphList_fwd.h"
 #include "support/types.h"
-#include "ParagraphList.h"
 
+#include <string>
 #include <vector>
 
-class Paragraph;
+class Buffer;
 class BufferParams;
-class LyXTextClass;
 class ErrorList;
+class LyXTextClass;
+class Paragraph;
 
 ///
 namespace CutAndPaste {
 
 ///
-std::vector<string>
-CutAndPaste::availableSelections(Buffer const & buffer);
+std::vector<std::string> const availableSelections(Buffer const & buffer);
 
 ///
 PitPosPair cutSelection(BufferParams const & params,