Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1166 - trunk/include


Chronological Thread 
  • From: abe@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1166 - trunk/include
  • Date: Fri, 11 Aug 2006 21:11:59 -0600 (MDT)

Author: abe
Date: Fri Aug 11 21:11:58 2006
New Revision: 1166

Added:
   trunk/include/About.cc.CMakeTemplate
Log:

Adding file missed on previous commit. 

NOTE: If re-configuring generates a whole bunch of errors, delete your
current build directory and re-configure from scratch.

A    About.cc.CMakeTemplate


Added: trunk/include/About.cc.CMakeTemplate
==============================================================================
--- (empty file)
+++ trunk/include/About.cc.CMakeTemplate        Fri Aug 11 21:11:58 2006
@@ -0,0 +1,71 @@
+/*
+  For more information, please see: http://software.sci.utah.edu
+
+  The MIT License
+
+  Copyright (c) 2005-2006
+  Scientific Computing and Imaging Institute, University of Utah
+
+  License for the specific language governing rights and limitations under
+  Permission is hereby granted, free of charge, to any person obtaining a
+  copy of this software and associated documentation files (the "Software"),
+  to deal in the Software without restriction, including without limitation
+  the rights to use, copy, modify, merge, publish, distribute, sublicense,
+  and/or sell copies of the Software, and to permit persons to whom the
+  Software is furnished to do so, subject to the following conditions:
+
+  The above copyright notice and this permission notice shall be included
+  in all copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+  DEALINGS IN THE SOFTWARE.
+*/
+
+#include <Core/Util/About.h>
+
+
+static char const *const license_string = 
+
+"For more information, please see: http://software.sci.utah.edu\n";
+"\n"
+"The MIT License\n"
+"\n"
+"Copyright (c) 2005-2006\n"
+"Scientific Computing and Imaging Institute, University of Utah\n"
+"\n"
+"License for the specific language governing rights and limitations under\n"
+"Permission is hereby granted, free of charge, to any person obtaining a\n"
+"copy of this software and associated documentation files (the 
\"Software\"),\n"
+"to deal in the Software without restriction, including without limitation\n"
+"the rights to use, copy, modify, merge, publish, distribute, sublicense,\n"
+"and/or sell copies of the Software, and to permit persons to whom the\n"
+"Software is furnished to do so, subject to the following conditions:\n"
+"\n"
+"The above copyright notice and this permission notice shall be included\n"
+"in all copies or substantial portions of the Software.\n"
+"\n"
+"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n"
+"OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY,\n"
+"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n"
+"THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 
OTHER\n"
+"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n"
+"FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n"
+"DEALINGS IN THE SOFTWARE.\n";
+
+const char *Manta::getLicenseString() {
+
+  return license_string;
+}
+
+// This string is produced by a CMake CONFIGURE_FILE directive.
+static char const *const about_string = "${ABOUT_STRING}";
+
+const char * Manta::getAboutString() {
+
+     return about_string;
+};




  • [MANTA] r1166 - trunk/include, abe, 08/11/2006

Archive powered by MHonArc 2.6.16.

Top of page