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:
parent
e7b01db7c4
commit
2915f0b590
@ -67,4 +67,4 @@ include_directories (${CMAKE_BINARY_DIR}/inc
|
|||||||
${Ocaf_SRC_DIR}
|
${Ocaf_SRC_DIR}
|
||||||
${MFC_STANDARD_SAMPLES_DIR}/Common)
|
${MFC_STANDARD_SAMPLES_DIR}/Common)
|
||||||
|
|
||||||
target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO)
|
target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO TKBin TKXml)
|
||||||
|
@ -13,6 +13,9 @@
|
|||||||
#include "direct.h"
|
#include "direct.h"
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <BinDrivers.hxx>
|
||||||
|
#include <XmlDrivers.hxx>
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// COcafApp
|
// COcafApp
|
||||||
|
|
||||||
@ -39,6 +42,10 @@ COcafApp::COcafApp() : OCC_App()
|
|||||||
SampleName = "OCAF"; //for about dialog
|
SampleName = "OCAF"; //for about dialog
|
||||||
SetSamplePath (L"..\\..\\06_Ocaf");
|
SetSamplePath (L"..\\..\\06_Ocaf");
|
||||||
|
|
||||||
|
// load persistence
|
||||||
|
BinDrivers::DefineFormat (myApp);
|
||||||
|
XmlDrivers::DefineFormat (myApp);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
UnitsAPI::SetLocalSystem(UnitsAPI_MDTV);
|
UnitsAPI::SetLocalSystem(UnitsAPI_MDTV);
|
||||||
|
@ -22,42 +22,16 @@
|
|||||||
|
|
||||||
TOcaf_Application::TOcaf_Application()
|
TOcaf_Application::TOcaf_Application()
|
||||||
{
|
{
|
||||||
// Instanciate a TOcafFunction_BoxDriver and add it to the TFunction_DriverTable
|
// Instanciate a TOcafFunction_BoxDriver and add it to the TFunction_DriverTable
|
||||||
TFunction_DriverTable::Get()->AddDriver(TOcafFunction_BoxDriver::GetID(),
|
TFunction_DriverTable::Get()->AddDriver (TOcafFunction_BoxDriver::GetID(),
|
||||||
new TOcafFunction_BoxDriver());
|
new TOcafFunction_BoxDriver());
|
||||||
|
|
||||||
// Instanciate a TOcafFunction_CylDriver and add it to the TFunction_DriverTable
|
// Instanciate a TOcafFunction_Cyl Driver and add it to the TFunction_DriverTable
|
||||||
TFunction_DriverTable::Get()->AddDriver(TOcafFunction_CylDriver::GetID(),
|
TFunction_DriverTable::Get()->AddDriver (TOcafFunction_CylDriver::GetID(),
|
||||||
new TOcafFunction_CylDriver());
|
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_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");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,12 +33,6 @@ public:
|
|||||||
// Methods PUBLIC
|
// Methods PUBLIC
|
||||||
//
|
//
|
||||||
Standard_EXPORT TOcaf_Application();
|
Standard_EXPORT TOcaf_Application();
|
||||||
Standard_EXPORT virtual void Formats(TColStd_SequenceOfExtendedString& Formats) ;
|
|
||||||
Standard_EXPORT Standard_CString ResourcesName() ;
|
|
||||||
Standard_EXPORT ~TOcaf_Application();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Type management
|
// Type management
|
||||||
//
|
//
|
||||||
|
@ -18,8 +18,6 @@
|
|||||||
#include <Standard_TypeMismatch.hxx>
|
#include <Standard_TypeMismatch.hxx>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TOcaf_Application::~TOcaf_Application() {}
|
|
||||||
|
|
||||||
// DownCast method
|
// DownCast method
|
||||||
// allow safe downcasting
|
// allow safe downcasting
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user