890586486296ccfccb745491a22bb8836a90eab8
[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 // Declarations:        
22
23 #include <TDocStd.hxx>
24
25 #include <CDF.hxx>
26 #include <OSD_Environment.hxx>
27 #include <TDocStd_XLink.hxx>
28
29 //#include <LCTLOFF.h>
30 //=======================================================================
31 //function : Application
32 //purpose  : 
33 //=======================================================================
34 // Handle(TDocStd_Application) TDocStd::Application
35 // (const Standard_Boolean UseDocAPI)
36 // {
37 //   static Handle(TDocStd_Application) theAppli;
38 //   if (theAppli.IsNull()) theAppli = new TDocStd_Application(UseDocAPI);
39 //   OSD_Environment CSFLicense("CSF_EngineName");
40 //   TCollection_AsciiString LicenseAscii = CSFLicense .Value();
41 //   Standard_Boolean HasLicense = Standard_False;
42 //   if (!LicenseAscii.IsEmpty()) {
43 //     if (LicenseAscii=="DsgPEngine")
44 //       HasLicense = Standard_True;
45 //   }
46 //   if (HasLicense) {
47 //     CDF::GetLicense(AED100) ; 
48 //     CDF::GetLicense(AED300) ; 
49 //   }
50 //   return theAppli;
51 // }
52 //=======================================================================
53 //function : InitApplication
54 //purpose  : 
55 //=======================================================================
56 // Handle(TDocStd_Application) TDocStd::InitApplication
57 // (const Standard_Boolean UseDocAPI)
58 // {
59 //   // No init yet.
60 //   return TDocStd::Application(UseDocAPI);
61 // }
62 //=======================================================================
63 //function : IDList
64 //purpose  : 
65 //=======================================================================
66 void TDocStd::IDList(TDF_IDList& anIDList)
67 { anIDList.Append(TDocStd_XLink::GetID()); }
68