mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
55
src/Standard/Standard_ExtString.hxx
Executable file
55
src/Standard/Standard_ExtString.hxx
Executable file
@@ -0,0 +1,55 @@
|
||||
//============================================================================
|
||||
//==== Titre: Standard_ExtString.hxx
|
||||
//====
|
||||
//==== Implementation: This is a primitive type implementadef with typedef
|
||||
//==== typedef short* Standard_ExtString;
|
||||
//============================================================================
|
||||
|
||||
#ifndef _Standard_ExtString_HeaderFile
|
||||
#define _Standard_ExtString_HeaderFile
|
||||
|
||||
|
||||
#ifndef _Standard_TypeDef_HeaderFile
|
||||
#include <Standard_TypeDef.hxx>
|
||||
#endif
|
||||
|
||||
class Handle_Standard_Type;
|
||||
|
||||
__Standard_API Handle_Standard_Type& Standard_ExtString_Type_();
|
||||
//class Standard_OStream;
|
||||
//void ShallowDump (const Standard_ExtString, Standard_OStream& );
|
||||
//============================================================================
|
||||
//==== ShallowCopy: Returns a CString
|
||||
//============================================================================
|
||||
inline Standard_ExtString ShallowCopy (const Standard_ExtString Value)
|
||||
{
|
||||
return Value;
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
//==== HashCode : Returns a HashCode ExtString
|
||||
//============================================================================
|
||||
__Standard_API Standard_Integer HashCode (const Standard_ExtString, const Standard_Integer);
|
||||
|
||||
//============================================================================
|
||||
//==== IsSimilar : Returns Standard_True if two booleans have the same value
|
||||
//============================================================================
|
||||
inline Standard_Boolean IsSimilar(const Standard_ExtString One
|
||||
,const Standard_ExtString Two)
|
||||
{ return One == Two; }
|
||||
|
||||
//============================================================================
|
||||
// IsEqual : Returns Standard_True if two ExtString have the same value
|
||||
//============================================================================
|
||||
inline Standard_Boolean IsEqual(const Standard_ExtString One
|
||||
,const Standard_ExtString Two)
|
||||
{ return One == Two; }
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user