File: main.cpp

package info (click to toggle)
eq10q 2.2~repack0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,384 kB
  • sloc: cpp: 8,036; ansic: 1,776; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include "guitester.h"
#include <gtkmm/main.h>


int main (int argc, char *argv[])
{ 
  //Gtk::RC::add_default_file("/home/sapista/build/LV2/GtkRCTest/gtkrc");
  //Gtk::RC::add_default_file("/usr/share/themes/Redmond/gtk-2.0/gtkrc");

  Gtk::Main kit(argc, argv);

  

  
  HelloWorld helloworld;

 
  //Shows the window and returns when it is closed.
  Gtk::Main::run(helloworld);

  return 0;
}