File: main.cpp

package info (click to toggle)
fltk1.3 1.3.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,300 kB
  • sloc: cpp: 105,017; ansic: 91,383; sh: 6,825; makefile: 1,948; perl: 24; xml: 7
file content (12 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12

#include "main.h"
#include "ui.h"

#include <FL/FL.h>

int main(int argc, char **argv)
{
  Fl_Window *win = make_window();
  win->show(argc, argv);
  return Fl::run();
}