mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 14:29:54 +08:00
12 lines
294 B
C++
12 lines
294 B
C++
#include "markdownbufferfactory.h"
|
|
|
|
#include "markdownbuffer.h"
|
|
|
|
using namespace vnotex;
|
|
|
|
Buffer *MarkdownBufferFactory::createBuffer(const BufferParameters &p_parameters,
|
|
QObject *p_parent)
|
|
{
|
|
return new MarkdownBuffer(p_parameters, p_parent);
|
|
}
|