12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
- /*================================================================
- *
- * Project : Freyja
- * Author : Terry 'Mongoose' Hendrix II
- * Website : http://www.westga.edu/~stu7440/
- * Email : stu7440@westga.edu
- * Object : Light
- * License : No use w/o permission (C) 2002 Mongoose
- * Comments: This is the GL light class
- *
- *
- * This file was generated using Mongoose's C++
- * template generator script. <stu7440@westga.edu>
- *
- *-- History -------------------------------------------------
- *
- * 2002.01.27:
- * Mongoose - Created
- =================================================================*/
-
- #include "Light.h"
-
-
- Light::Light()
- {
- }
-
-
- Light::~Light()
- {
- }
-
-
- ////////////////////////////////////////////////////////////
- // Unit Test code
- ////////////////////////////////////////////////////////////
-
- #ifdef LIGHT_UNIT_TEST
- int runLightUnitTest(int argc, char *argv[])
- {
- return 0;
- }
-
-
- int main(int argc, char *argv[])
- {
- printf("[Light class test]\n");
-
- return runLightUnitTest(argc, argv);
- }
- #endif
|