1999-02-23 00:33:55 +03:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|
2008-09-16 11:26:22 +04:00
|
|
|
// CubeView class .
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/COPYING.php
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|
|
|
|
|
2010-12-15 15:11:16 +03:00
|
|
|
#include <config.h>
|
1999-02-23 00:33:55 +03:00
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include "CubeViewUI.h"
|
|
|
|
|
1999-03-04 16:39:41 +03:00
|
|
|
int
|
2001-12-23 06:40:51 +03:00
|
|
|
main(int argc, char **argv) {
|
1999-02-23 00:33:55 +03:00
|
|
|
|
|
|
|
CubeViewUI *cvui=new CubeViewUI;
|
|
|
|
|
|
|
|
//Initial global objects.
|
|
|
|
|
|
|
|
Fl::visual(FL_DOUBLE|FL_INDEX);
|
|
|
|
|
2001-12-23 06:40:51 +03:00
|
|
|
cvui->show(argc, argv);
|
1999-02-23 00:33:55 +03:00
|
|
|
|
|
|
|
return Fl::run();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1999-02-23 00:33:55 +03:00
|
|
|
//
|