~ubuntu-branches/ubuntu/karmic/kdevelop/karmic

« back to all changes in this revision

Viewing changes to languages/cpp/app_templates/gtk2mmapp/gtk2mm.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-05-25 19:34:26 UTC
  • mfrom: (1.1.11 upstream) (2.3.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090525193426-hdntv90rvflyew8g
Tags: 4:3.9.93-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - Conflict/replace -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%{CC_TEMPLATE}
2
 
 
3
 
#include <gtkmm/main.h>
4
 
 
5
 
#include "main_window.hh"
6
 
 
7
 
int main(int argc, char **argv)
8
 
{  
9
 
   
10
 
   Gtk::Main m(&argc, &argv);
11
 
 
12
 
   main_window main_window;
13
 
   Gtk::Main::run(main_window);
14
 
   return 0;
15
 
}