mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 22:39:53 +08:00
32 lines
753 B
C++
32 lines
753 B
C++
#ifndef VXNOTEBOOKCONFIGMGRFACTORY_H
|
|
#define VXNOTEBOOKCONFIGMGRFACTORY_H
|
|
|
|
|
|
#include "inotebookconfigmgrfactory.h"
|
|
|
|
|
|
namespace vnotex
|
|
{
|
|
class VXNotebookConfigMgrFactory : public INotebookConfigMgrFactory
|
|
{
|
|
public:
|
|
VXNotebookConfigMgrFactory();
|
|
|
|
QString getName() const Q_DECL_OVERRIDE;
|
|
|
|
QString getDisplayName() const Q_DECL_OVERRIDE;
|
|
|
|
QString getDescription()const Q_DECL_OVERRIDE;
|
|
|
|
QSharedPointer<INotebookConfigMgr> createNotebookConfigMgr(const QSharedPointer<INotebookBackend> &p_backend) Q_DECL_OVERRIDE;
|
|
|
|
static const QString c_name;
|
|
|
|
static const QString c_displayName;
|
|
|
|
static const QString c_description;
|
|
};
|
|
} // ns vnotex
|
|
|
|
#endif // VXNOTEBOOKCONFIGMGRFACTORY_H
|