0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-28 01:04:41 +08:00

45 lines
1006 B
C++
Raw Normal View History

2016-04-29 16:13:32 +03:00
#include <QApplication>
#include <QTreeView>
#include <QFileSystemModel>
2016-07-10 01:15:41 +03:00
#include <chrono>
//#include "treemodel.h"
#include "main_window.h"
2016-06-26 12:48:59 +03:00
#include "profiler/reader.h"
2016-04-29 16:13:32 +03:00
//#ifdef _WIN32
//#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
//#endif
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);
EasyMainWindow window;
window.show();
2016-04-29 16:13:32 +03:00
return app.exec();
2016-05-01 23:32:46 +03:00
}