1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0028066: Samples - mfc ocaf sample could not read/save any document without environment variables

Persistence libs are loaded using DefineFormat() in OCAF sample
This commit is contained in:
abv 2016-11-08 07:22:06 +03:00 committed by apn
parent e7b01db7c4
commit 2915f0b590
5 changed files with 18 additions and 45 deletions

View File

@ -67,4 +67,4 @@ include_directories (${CMAKE_BINARY_DIR}/inc
${Ocaf_SRC_DIR}
${MFC_STANDARD_SAMPLES_DIR}/Common)
target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO)
target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO TKBin TKXml)

View File

@ -13,6 +13,9 @@
#include "direct.h"
#include <OSD_Environment.hxx>
#include <BinDrivers.hxx>
#include <XmlDrivers.hxx>
/////////////////////////////////////////////////////////////////////////////
// COcafApp
@ -39,6 +42,10 @@ COcafApp::COcafApp() : OCC_App()
SampleName = "OCAF"; //for about dialog
SetSamplePath (L"..\\..\\06_Ocaf");
// load persistence
BinDrivers::DefineFormat (myApp);
XmlDrivers::DefineFormat (myApp);
try
{
UnitsAPI::SetLocalSystem(UnitsAPI_MDTV);

View File

@ -22,42 +22,16 @@
TOcaf_Application::TOcaf_Application()
{
// Instanciate a TOcafFunction_BoxDriver and add it to the TFunction_DriverTable
TFunction_DriverTable::Get()->AddDriver(TOcafFunction_BoxDriver::GetID(),
new TOcafFunction_BoxDriver());
// Instanciate a TOcafFunction_BoxDriver and add it to the TFunction_DriverTable
TFunction_DriverTable::Get()->AddDriver (TOcafFunction_BoxDriver::GetID(),
new TOcafFunction_BoxDriver());
// Instanciate a TOcafFunction_CylDriver and add it to the TFunction_DriverTable
TFunction_DriverTable::Get()->AddDriver(TOcafFunction_CylDriver::GetID(),
new TOcafFunction_CylDriver());
// Instanciate a TOcafFunction_CutDriver and add it to the TFunction_DriverTable
Handle(TOcafFunction_CutDriver) myCutDriver = new TOcafFunction_CutDriver();
TFunction_DriverTable::Get()->AddDriver(TOcafFunction_CutDriver::GetID(),
new TOcafFunction_CutDriver());
// Instanciate a TOcafFunction_Cyl Driver and add it to the TFunction_DriverTable
TFunction_DriverTable::Get()->AddDriver (TOcafFunction_CylDriver::GetID(),
new TOcafFunction_CylDriver());
// Instanciate a TOcafFunction_CutDriver and add it to the TFunction_DriverTable
Handle(TOcafFunction_CutDriver) myCutDriver = new TOcafFunction_CutDriver();
TFunction_DriverTable::Get()->AddDriver (TOcafFunction_CutDriver::GetID(),
new TOcafFunction_CutDriver());
}
//=======================================================================
//function : Formats
//purpose :
//=======================================================================
void TOcaf_Application::Formats(TColStd_SequenceOfExtendedString& Formats)
{
Formats.Append(TCollection_ExtendedString("BinOcaf"));
Formats.Append(TCollection_ExtendedString("XmlOcaf"));
}
//=======================================================================
//function : ResourcesName
//purpose :
//=======================================================================
Standard_CString TOcaf_Application::ResourcesName()
{
return Standard_CString ("Standard");
}

View File

@ -33,12 +33,6 @@ public:
// Methods PUBLIC
//
Standard_EXPORT TOcaf_Application();
Standard_EXPORT virtual void Formats(TColStd_SequenceOfExtendedString& Formats) ;
Standard_EXPORT Standard_CString ResourcesName() ;
Standard_EXPORT ~TOcaf_Application();
// Type management
//

View File

@ -18,8 +18,6 @@
#include <Standard_TypeMismatch.hxx>
#endif
TOcaf_Application::~TOcaf_Application() {}
// DownCast method
// allow safe downcasting
//