summaryrefslogtreecommitdiffstats
path: root/src/templates/main.cpp
blob: d7a3f40a41ca7c04109b9c8e87b59034500a7284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <gtkmm/main.h>

#include "new-from-template.h"

using namespace Inkscape::UI;

int main (int argc, char *argv[])
{
  Gtk::Main kit(argc, argv);

  NewFromTemplate dialog;
  dialog.run();
  //Gtk::Main::run(dialog);

  return 0;
}