mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-06 20:03:12 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
#include "iv/markdown/iv_markdown_controller.h"
|
|
|
|
#include <utility>
|
|
|
|
namespace Iv::Markdown {
|
|
|
|
Controller::Controller(OpenOptions options)
|
|
: _options(std::move(options)) {
|
|
}
|
|
|
|
const OpenOptions &Controller::options() const {
|
|
return _options;
|
|
}
|
|
|
|
} // namespace Iv::Markdown
|