-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
34 lines (27 loc) · 747 Bytes
/
main.cpp
File metadata and controls
34 lines (27 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*!
* @file main.cpp
* @brief
*
* <+DETAILED+>
*
* @author Thadeu Luiz Barbosa Dias (tlbd)
*
* @internal
* Created: 06/14/2019
* Revision: none
* Compiler: g++
* Organization: SMT - Signals, Multimedia and Telecommunications Lab
* Copyright: Copyright (c) 2019, Thadeu Luiz Barbosa Dias
*
* This source code is released for free distribution under the terms of the
* GNU General Public License as published by the Free Software Foundation.
*/
#include "main_window.hpp"
#include <QApplication>
using namespace std;
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
auto main_window = rtspice::gui::main_window{};
main_window.show();
return app.exec();
}