mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-11 06:03:40 +00:00
14 lines
278 B
C++
14 lines
278 B
C++
#include "iv/markdown/iv_markdown_document.h"
|
|
|
|
#include <utility>
|
|
|
|
namespace Iv::Markdown {
|
|
|
|
PreparedDocument EmptyDocument(QString sourceName) {
|
|
auto document = PreparedDocument();
|
|
document.sourceName = std::move(sourceName);
|
|
return document;
|
|
}
|
|
|
|
} // namespace Iv::Markdown
|