QtNovelUI/WordsIDE/DocsManager.cpp

14 lines
277 B
C++
Raw Normal View History

2022-12-31 13:05:58 +00:00
#include "DocsManager.h"
#include "mainwindow.h"
#include <QMessageBox>
#include <QTextStream>
#include <QDebug>
2023-02-26 14:44:00 +00:00
#include <QTextCodec>
2022-12-31 13:05:58 +00:00
2023-08-27 14:09:46 +00:00
using namespace Components;
2022-12-31 13:05:58 +00:00
using namespace Core;
using namespace Presents;
2022-12-31 13:05:58 +00:00
2023-03-17 13:58:38 +00:00
FilePresent::FilePresent(QObject *parent) : QObject(parent) {}