mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 22:39:53 +08:00
21 lines
442 B
C++
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
|