blob: 5d94c89e6177db40b873f2aa1d060738efd98b66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// File: AppStdL_Application.cxx
// Created: Jun 29 11:45:12 2004
// Author: Eugeny NAPALKOV
// <env@kivox>
// Copyright: Matra Datavision 2004
// History : AGV 15/10/01 : Add XmlOcaf support; add MessageDriver support
#include <AppStdL_Application.ixx>
#include <CDM_COutMessageDriver.hxx>
//=======================================================================
//function : AppStdL_Application
//purpose :
//=======================================================================
AppStdL_Application::AppStdL_Application()
{
myMessageDriver = new CDM_COutMessageDriver;
}
//=======================================================================
//function : MessageDriver
//purpose :
//=======================================================================
Handle(CDM_MessageDriver) AppStdL_Application::MessageDriver ()
{
return myMessageDriver;
}
//=======================================================================
//function : Formats
//purpose :
//=======================================================================
void AppStdL_Application::Formats(TColStd_SequenceOfExtendedString& theFormats)
{
theFormats.Append("OCC-StdLite");
theFormats.Append("XmlLOcaf");
theFormats.Append("BinLOcaf");
}
//=======================================================================
//function : ResourcesName
//purpose :
//=======================================================================
Standard_CString AppStdL_Application::ResourcesName() {
const Standard_CString aRes = "StandardLite";
//const Standard_CString aRes = "Standard";
return aRes;
}
|