Comments, cosmetics.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23236 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2008-02-25 22:19:59 +00:00
parent 2fb02d20f1
commit 98a72aac8a

View 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_;
};