mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 22:39:53 +08:00
12 lines
274 B
C++
12 lines
274 B
C++
#include "textbufferfactory.h"
|
|
|
|
#include "textbuffer.h"
|
|
|
|
using namespace vnotex;
|
|
|
|
Buffer *TextBufferFactory::createBuffer(const BufferParameters &p_parameters,
|
|
QObject *p_parent)
|
|
{
|
|
return new TextBuffer(p_parameters, p_parent);
|
|
}
|