Added required header and footer for new source files.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10955 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2015-12-10 16:20:37 +00:00
parent 8d1d2df0c2
commit 3e8556195b
2 changed files with 45 additions and 0 deletions

View File

@ -1,3 +1,21 @@
//
// "$Id$"
//
// Tiny OpenGL v3 + glut demo program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2015 by Bill Spitzak and others.
//
// 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
//
// Please report all bugs and problems on the following page:
//
// http://www.fltk.org/str.php
//
#include <stdio.h>
#if defined(__APPLE__)
# define GL_DO_NOT_WARN_IF_MULTI_GL_VERSION_HEADERS_INCLUDED 1
@ -198,3 +216,7 @@ int main (int argc, char* argv[])
glutMainLoop();
return 0;
}
//
// End of "$Id$".
//

View File

@ -1,3 +1,21 @@
//
// "$Id$"
//
// Tiny OpenGL v3 demo program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2015 by Bill Spitzak and others.
//
// 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
//
// Please report all bugs and problems on the following page:
//
// http://www.fltk.org/str.php
//
#include <stdarg.h>
#include <FL/Fl.H>
#include <FL/x.H>
@ -208,3 +226,8 @@ int main(int argc, char **argv)
topwin->show(argc, argv);
Fl::run();
}
//
// End of "$Id$".
//