QtNovelUI/WordsIDE/appcore.cpp

23 lines
455 B
C++
Raw Normal View History

2022-11-18 23:47:32 +00:00
#include "appcore.h"
2022-12-31 13:05:58 +00:00
#include "DocsManager.h"
#include "mainwindow.h"
2023-03-17 13:58:38 +00:00
#include "manager_docs.h"
#include "srcedit_storyboard.h"
#include "xapp.h"
#include "xmlconfig.h"
#include <QMessageBox>
#include <QTextStream>
2022-11-18 23:47:32 +00:00
using namespace Core;
using namespace Components;
using namespace MakeTools;
2023-02-26 16:22:44 +00:00
SimpleException::SimpleException(const QString &msg)
: msg_store(msg) {}
const char *SimpleException::what() const{
return msg_store.toLocal8Bit();
}