mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 05:40:59 +00:00
Comments, cosmetics.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23236 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2fb02d20f1
commit
98a72aac8a
@ -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_;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user