From 98a72aac8a46a0d26265b499366221ce99ccfe7c Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 25 Feb 2008 22:19:59 +0000 Subject: [PATCH] Comments, cosmetics. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23236 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/TextClass.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/TextClass.h b/src/TextClass.h index 6828074f85..23175a2b9d 100644 --- a/src/TextClass.h +++ b/src/TextClass.h @@ -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 tc_list_; /// control instantiation TextClassBundle() {}; /// noncopyable TextClassBundle(TextClassBundle const &); + /// + std::list tc_list_; }; -- 2.39.2