mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00
18 lines
384 B
C++
18 lines
384 B
C++
#ifndef TEXTBUFFERFACTORY_H
|
|
#define TEXTBUFFERFACTORY_H
|
|
|
|
#include "ibufferfactory.h"
|
|
|
|
namespace vnotex
|
|
{
|
|
// Buffer factory for text file.
|
|
class TextBufferFactory : public IBufferFactory
|
|
{
|
|
public:
|
|
Buffer *createBuffer(const BufferParameters &p_parameters,
|
|
QObject *p_parent) Q_DECL_OVERRIDE;
|
|
};
|
|
}
|
|
|
|
#endif // TEXTBUFFERFACTORY_H
|