1
0
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:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View 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