-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cc
More file actions
15 lines (13 loc) · 543 Bytes
/
main.cc
File metadata and controls
15 lines (13 loc) · 543 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <gtkmm.h>
#include <string>
#include "./src/header/hypertextapp.h"
//################################################
int main(int argc, char *argv[]) {
auto application = hyp::HypTextApp::create();
// Start the application, showing the initial window,
// and opening extra windows for any files that it is asked to open,
// for instance as a command-line parameter.
// run() will return when the last window has been closed by the user.
const int status = application->run(argc, argv);
return status;
}