Geom Software - C++ Programming and Geometry Libraries
Fade3D Documentation pages v0.99
/home/geom/repo/dev/geomDev/dt3/dt3Library/License.h
1 
2 // (c) 2010 Geom e.U. Bernhard Kornberger, Graz/Austria. All rights reserved.
3 //
4 // This file is part of the Fade3D library. The licensee mentioned below may use
5 // this license file for evaluation purposes during the agreed period
6 // Commercial use requires a valid commercial license, this applies also to
7 // inhouse usage. This license file is personalized, DO NOT SHARE IT.
8 
9 // This software is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
10 // THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 //
12 // Please contact the author if any conditions of this licensing are not clear
13 // to you.
14 //
15 // Author: Bernhard Kornberger, bkorn (at) geom.at
16 // C++ Freelancer
17 // https://www.geom.at/products/fade3d/
18 
19 
20 
21 #pragma once
22 #include "Fade_3D.h"
23 
24 namespace{
25 
26 struct License
27 {
28  License()
29  {
30  FADE3D::setLic(
31  "Bitgear Wireless Design Services;Stevana Markovića 8, 11080 Belgrade, Serbia;Kristina Vasić;;License for Evaluation",
32  "[LicType,eval],[3D,1e7]",
33  "[LF:F/C]",
34  "9f582b3",
35  "5dfc86c9");
36  }
37 };
38 License lic;
39 }