mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-02-11 17:23:08 +05:00
40 lines
920 B
C++
40 lines
920 B
C++
![]() |
|
||
|
using namespace std;
|
||
|
#include "GEOM_Application.ixx"
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : GEOM_Application
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
GEOM_Application::GEOM_Application()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : Formats
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
void GEOM_Application::Formats(TColStd_SequenceOfExtendedString& Formats)
|
||
|
{
|
||
|
Formats.Append(TCollection_ExtendedString ("SALOME_GEOM"));
|
||
|
}
|
||
|
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : ResourcesName
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
Standard_CString GEOM_Application::ResourcesName()
|
||
|
{
|
||
|
return Standard_CString ("GEOMDS_Resources");
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|