blob: afc24a41705a58f00847efe18d2fff7cf4127f53 (
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
|
// File: AppStd_Application.cxx
// Created: Sep 7 15:01:46 2000
// Author: TURIN Anatoliy <ati@nnov.matra-dtv.fr>
// Copyright: Matra Datavision 2000
// History : AGV 15/10/01 : Add XmlOcaf support; add MessageDriver support
#include <AppStd_Application.ixx>
#include <CDM_COutMessageDriver.hxx>
//=======================================================================
//function : AppStd_Application
//purpose :
//=======================================================================
AppStd_Application::AppStd_Application()
{
myMessageDriver = new CDM_COutMessageDriver;
}
//=======================================================================
//function : MessageDriver
//purpose :
//=======================================================================
Handle(CDM_MessageDriver) AppStd_Application::MessageDriver ()
{
return myMessageDriver;
}
//=======================================================================
//function : Formats
//purpose :
//=======================================================================
void AppStd_Application::Formats(TColStd_SequenceOfExtendedString& theFormats)
{
theFormats.Append("XmlOcaf");
theFormats.Append("BinOcaf");
theFormats.Append("MDTV-Standard");
}
//=======================================================================
//function : ResourcesName
//purpose :
//=======================================================================
Standard_CString AppStd_Application::ResourcesName() {
const Standard_CString aRes = "Standard";
return aRes;
}
|