/usr/include/opencascade/Units_Token.lxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | // File: Units_Token.lxx
// Created: Wed Jun 24 12:49:16 1992
// Author: Gilles DEBARBOUILLE
// <gde@phobox>
#include <stdio.h>
#include <string.h>
#include <Standard_Stream.hxx>
#include <TCollection_AsciiString.hxx>
#include <Units_Dimensions.hxx>
//=======================================================================
//function : Word
//purpose :
//=======================================================================
inline TCollection_AsciiString Units_Token::Word() const
{
return theword;
}
//=======================================================================
//function : Mean
//purpose :
//=======================================================================
inline TCollection_AsciiString Units_Token::Mean() const
{
return themean;
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline Standard_Real Units_Token::Value() const
{
return thevalue;
}
//=======================================================================
//function : Dimensions
//purpose :
//=======================================================================
inline Handle(Units_Dimensions) Units_Token::Dimensions() const
{
return thedimensions;
}
//=======================================================================
//function : Word
//purpose :
//=======================================================================
inline void Units_Token::Word(const Standard_CString aword)
{
theword = aword;
}
//=======================================================================
//function : Mean
//purpose :
//=======================================================================
inline void Units_Token::Mean(const Standard_CString amean)
{
themean = amean;
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline void Units_Token::Value(const Standard_Real avalue)
{
thevalue = avalue;
}
//=======================================================================
//function : IsNotEqual
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsNotEqual (const Standard_CString astring) const
{
TCollection_AsciiString string = Word();
Standard_Integer length = string.Length();
if(strlen(astring) == (unsigned int ) length)
return (strncmp(string.ToCString(),astring,unsigned(length)) != 0)
? Standard_True : Standard_False;
else
return Standard_True;
}
//=======================================================================
//function : IsNotEqual
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsNotEqual (const Handle(Units_Token)& atoken) const
{
TCollection_AsciiString string1 = Word();
TCollection_AsciiString string2 = atoken->Word();
Standard_Integer length = string1.Length();
if(length == atoken->Length())
return (strcmp(string1.ToCString(),string2.ToCString()) != 0) ? Standard_True : Standard_False;
else
return Standard_True;
}
//=======================================================================
//function : IsLessOrEqual
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsLessOrEqual (const Standard_CString astring) const
{
TCollection_AsciiString string = Word();
Standard_Integer length = string.Length();
if(strlen(astring) >= (unsigned int ) length)
return (strncmp(string.ToCString(),astring,unsigned(length)) == 0)
? Standard_True : Standard_False;
else
return Standard_False;
}
//=======================================================================
//function : IsGreater
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsGreater (const Standard_CString astring) const
{
TCollection_AsciiString string = Word();
Standard_Integer length = string.Length();
return (strncmp(string.ToCString(),astring,unsigned(length)) > 0)
? Standard_True : Standard_False;
}
//=======================================================================
//function : IsGreater
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsGreater (const Handle(Units_Token)& atoken) const
{
TCollection_AsciiString string1 = Word();
TCollection_AsciiString string2 = atoken->Word();
Standard_Integer length = string1.Length();
return (strncmp(string1.ToCString(),string2.ToCString(),unsigned(length)) > 0)
? Standard_True : Standard_False;
}
//=======================================================================
//function : IsGreaterOrEqual
//purpose :
//=======================================================================
inline Standard_Boolean Units_Token::IsGreaterOrEqual (const Handle(Units_Token)& atoken) const
{
TCollection_AsciiString string1 = Word();
TCollection_AsciiString string2 = atoken->Word();
Standard_Integer length = string1.Length();
return (strncmp(string1.ToCString(),string2.ToCString(),unsigned(length)) >= 0)
? Standard_True : Standard_False;
}
|