0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / AppStdL / AppStdL_Application.cxx
1 // Created on: 2004-06-29
2 // Created by: Eugeny NAPALKOV 
3 // Copyright (c) 2004-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //AGV 15/10/01 : Add XmlOcaf support; add MessageDriver support
17
18 #include <AppStdL_Application.hxx>
19 #include <CDM_COutMessageDriver.hxx>
20 #include <CDM_MessageDriver.hxx>
21 #include <Standard_Type.hxx>
22
23 IMPLEMENT_STANDARD_RTTIEXT(AppStdL_Application,TDocStd_Application)
24
25 //=======================================================================
26 //function : AppStdL_Application
27 //purpose  : 
28 //=======================================================================
29 AppStdL_Application::AppStdL_Application()
30 {
31   myMessageDriver = new CDM_COutMessageDriver;
32 }
33
34 //=======================================================================
35 //function : MessageDriver
36 //purpose  : 
37 //=======================================================================
38
39 Handle(CDM_MessageDriver) AppStdL_Application::MessageDriver ()
40 {
41   return myMessageDriver;
42 }
43
44 //=======================================================================
45 //function : Formats
46 //purpose  : 
47 //=======================================================================
48 void AppStdL_Application::Formats(TColStd_SequenceOfExtendedString& theFormats) 
49 {
50   theFormats.Append("OCC-StdLite");
51   theFormats.Append("XmlLOcaf");
52   theFormats.Append("BinLOcaf");
53 }
54
55 //=======================================================================
56 //function : ResourcesName
57 //purpose  : 
58 //=======================================================================
59
60 Standard_CString AppStdL_Application::ResourcesName() {
61   const Standard_CString aRes = "StandardLite";
62   //const Standard_CString aRes = "Standard";
63   return aRes;
64 }
65