0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / TDocStd / TDocStd.cxx
1 // Copyright (c) 1997-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 //=======================================================================
16 // Language:    C++     
17 // Version:     QDF     
18 // Design:      
19 // Purpose:     
20 //=======================================================================
21
22 // Declarations:        
23
24 #include <TDocStd.ixx>
25 #include <CDF.hxx>
26 //#include <LCTLOFF.h>
27 #include <OSD_Environment.hxx>
28
29 #include <TDocStd_XLink.hxx>
30
31
32
33 //=======================================================================
34 //function : Application
35 //purpose  : 
36 //=======================================================================
37
38 // Handle(TDocStd_Application) TDocStd::Application
39 // (const Standard_Boolean UseDocAPI)
40 // {
41 //   static Handle(TDocStd_Application) theAppli;
42 //   if (theAppli.IsNull()) theAppli = new TDocStd_Application(UseDocAPI);
43 //   OSD_Environment CSFLicense("CSF_EngineName");
44 //   TCollection_AsciiString LicenseAscii = CSFLicense .Value();
45 //   Standard_Boolean HasLicense = Standard_False;
46 //   if (!LicenseAscii.IsEmpty()) {
47 //     if (LicenseAscii=="DsgPEngine")
48 //       HasLicense = Standard_True;
49
50 //   }
51 //   if (HasLicense) {
52
53 //     CDF::GetLicense(AED100) ; 
54 //     CDF::GetLicense(AED300) ; 
55 //   }
56
57 //   return theAppli;
58
59 // }
60
61
62 //=======================================================================
63 //function : InitApplication
64 //purpose  : 
65 //=======================================================================
66
67 // Handle(TDocStd_Application) TDocStd::InitApplication
68 // (const Standard_Boolean UseDocAPI)
69 // {
70 //   // No init yet.
71 //   return TDocStd::Application(UseDocAPI);
72 // }
73
74
75 //=======================================================================
76 //function : IDList
77 //purpose  : 
78 //=======================================================================
79
80 void TDocStd::IDList(TDF_IDList& anIDList)
81 { anIDList.Append(TDocStd_XLink::GetID()); }
82