]>
Commit | Line | Data |
---|---|---|
b311480e | 1 | // Created on: 2004-06-29 |
2 | // Created by: Eugeny NAPALKOV | |
973c2be1 | 3 | // Copyright (c) 2004-2014 OPEN CASCADE SAS |
b311480e | 4 | // |
973c2be1 | 5 | // This file is part of Open CASCADE Technology software library. |
b311480e | 6 | // |
d5f74e42 | 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 | |
973c2be1 | 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. | |
b311480e | 12 | // |
973c2be1 | 13 | // Alternatively, this file may be used under the terms of Open CASCADE |
14 | // commercial license or contractual agreement. | |
b311480e | 15 | |
16 | //AGV 15/10/01 : Add XmlOcaf support; add MessageDriver support | |
7fd59977 | 17 | |
42cf5bc1 | 18 | #include <AppStdL_Application.hxx> |
7fd59977 | 19 | #include <CDM_COutMessageDriver.hxx> |
42cf5bc1 | 20 | #include <CDM_MessageDriver.hxx> |
21 | #include <Standard_Type.hxx> | |
7fd59977 | 22 | |
92efcf78 | 23 | IMPLEMENT_STANDARD_RTTIEXT(AppStdL_Application,TDocStd_Application) |
24 | ||
7fd59977 | 25 | //======================================================================= |
26 | //function : AppStdL_Application | |
27 | //purpose : | |
28 | //======================================================================= | |
7fd59977 | 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 |