]> git.lyx.org Git - lyx.git/blobdiff - src/TextClassPtr.h
This is the first of a series of commits that will make InsetLayout a real class.
[lyx.git] / src / TextClassPtr.h
index 6ff307c3b9c4953d602f816e07b96e8c6f51c786..cb610b1bb0fc2a9e20b683347279cd50b74fe3ef 100644 (file)
@@ -1,11 +1,9 @@
 // -*- C++ -*-
 /**
- * \file TextClass_ptr.h
+ * \file TextClassPtr.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Richard Heck
- *
  * Full author contact details are available in file CREDITS.
  */
 
@@ -18,11 +16,13 @@ namespace lyx {
 
 class TextClass;
 
+/// Global typedef
 /** Shared pointer for possibly modular layout. Needed so that paste,
       *  for example, will still be able to retain the pointer, even when
       *  the buffer itself is closed.
+ *  for example, will still be able to retain the pointer, even when
+ *  the buffer itself is closed.
  */
 typedef boost::shared_ptr<TextClass> TextClassPtr;
 
-}
+} // namespace lyx
+
 #endif