2016-04-29 16:13:32 +03:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QTreeView>
|
|
|
|
#include <QFileSystemModel>
|
2016-07-10 01:15:41 +03:00
|
|
|
#include <chrono>
|
2016-08-10 22:08:27 +03:00
|
|
|
//#include "treemodel.h"
|
2016-06-26 20:54:16 +03:00
|
|
|
#include "main_window.h"
|
2016-06-26 12:48:59 +03:00
|
|
|
#include "profiler/reader.h"
|
2016-04-29 16:13:32 +03:00
|
|
|
|
2016-09-01 22:22:58 +03:00
|
|
|
//#ifdef _WIN32
|
2016-08-14 22:22:44 +03:00
|
|
|
//#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
|
|
|
|
//#endif
|
2016-08-04 23:12:05 +03:00
|
|
|
|
2016-04-29 16:13:32 +03:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
2016-05-01 23:32:46 +03:00
|
|
|
//QFileSystemModel *model = new QFileSystemModel;
|
|
|
|
//model->setRootPath(QDir::currentPath());
|
2016-06-26 12:48:59 +03:00
|
|
|
// const char* filename = 0;
|
|
|
|
// if(argc > 1 && argv[1]){
|
|
|
|
// filename = argv[1];
|
|
|
|
// }else{
|
|
|
|
// return 255;
|
|
|
|
// }
|
2016-06-10 23:45:21 +03:00
|
|
|
|
2016-06-26 12:48:59 +03:00
|
|
|
// QFile file(filename);
|
|
|
|
// file.open(QIODevice::ReadOnly);
|
|
|
|
// TreeModel model(file.readAll());
|
|
|
|
// file.close();
|
2016-05-01 23:32:46 +03:00
|
|
|
|
|
|
|
|
2016-06-26 12:48:59 +03:00
|
|
|
// QTreeView *tree = new QTreeView();
|
|
|
|
// tree->setModel(&model);
|
|
|
|
//
|
|
|
|
// tree->show();
|
2016-04-29 16:13:32 +03:00
|
|
|
|
2016-07-10 01:15:41 +03:00
|
|
|
auto now = ::std::chrono::duration_cast<std::chrono::seconds>(::std::chrono::system_clock::now().time_since_epoch()).count() >> 1;
|
|
|
|
srand((unsigned int)now);
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
EasyMainWindow window;
|
2016-08-10 22:08:27 +03:00
|
|
|
window.show();
|
2016-04-29 16:13:32 +03:00
|
|
|
|
2016-08-10 22:08:27 +03:00
|
|
|
return app.exec();
|
2016-05-01 23:32:46 +03:00
|
|
|
}
|