]> git.lyx.org Git - features.git/commitdiff
Comments, cosmetics.
authorRichard Heck <rgheck@comcast.net>
Mon, 25 Feb 2008 22:19:59 +0000 (22:19 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 25 Feb 2008 22:19:59 +0000 (22:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23236 a592a061-630c-0410-9148-cb99ea01b6c8

src/TextClass.h

index 6828074f85b152f53bcff741c1c649c04355fc79..23175a2b9d0f520ee648a8c2a6ead1285e52d3a1 100644 (file)
@@ -303,21 +303,23 @@ private:
 ///
 /// This is a singleton class. Its sole instance is accessed via 
 /// TextClassBundle::get().
+///
+/// See \file TextClassPtr.h for the definition of TextClassPtr.
 class TextClassBundle {
 public:
-       /// returns a pointer to a new class equal to baseClass
+       /// \return Pointer to a new class equal to baseClass
        TextClassPtr newClass(TextClass const & baseClass);
-       /// Returns the sole instance of this class.
+       /// \return The sole instance of this class.
        static TextClassBundle & get();
        ///
        ~TextClassBundle();
 private:
-       ///
-       std::list<TextClassPtr> tc_list_;
        /// control instantiation
        TextClassBundle() {};
        /// noncopyable
        TextClassBundle(TextClassBundle const &);
+       ///
+       std::list<TextClassPtr> tc_list_;
 };