vnote/src/core/buffer/textbuffer.h
Le Tan 52702a32e9 hard days for VNoteX project
Never say "refactor" again!!!
2020-11-28 23:10:43 +08:00

21 lines
442 B
C++

#ifndef TEXTBUFFER_H
#define TEXTBUFFER_H
#include "buffer.h"
namespace vnotex
{
class TextBuffer : public Buffer
{
Q_OBJECT
public:
TextBuffer(const BufferParameters &p_parameters,
QObject *p_parent = nullptr);
protected:
ViewWindow *createViewWindowInternal(const QSharedPointer<FileOpenParameters> &p_paras, QWidget *p_parent) Q_DECL_OVERRIDE;
};
}
#endif // TEXTBUFFER_H