[ libohymos | Source | Keywords | Summary | Ancestors | All Members | Descendants ]
Back to the top of OHyMosString
simple string class
Back to the top of OHyMosString
OHyMosString(void);
Constructor
OHyMosString(void); // OHyMosString s;
Back to the top of OHyMosString
OHyMosString(const char*);
Conversion constructor
OHyMosString(const char*); // OHyMosString s = "abcd";
Back to the top of OHyMosString
OHyMosString(const OHyMosString&);
Copy constructor
OHyMosString(const OHyMosString&); // OHyMosString p = s;
Back to the top of OHyMosString
~OHyMosString() ;
Destructor
~OHyMosString() ;
Function is currently defined inline.
Back to the top of OHyMosString
OHyMosString& operator=(const char*);
Assignment operator
OHyMosString& operator=(const char*);
Back to the top of OHyMosString
OHyMosString& operator=(const OHyMosString&);
Assignment operator
OHyMosString& operator=(const OHyMosString&);
Back to the top of OHyMosString
char& operator[](size_t);
Subscripting
char& operator[](size_t);
Back to the top of OHyMosString
operator char*();
Conversion operator to char*. Note that a new area is created and
the pointer to that area is returned.
operator char*();
Back to the top of OHyMosString
int Size() const ;
Returns the length
int Size() const ;
Function is currently defined inline.
Back to the top of OHyMosString
void operator += (const OHyMosString & str);
Concatenates a string
void operator += (const OHyMosString & str);
Back to the top of OHyMosString
void operator += (char* cstr);
Concatenates a string
void operator += (char* cstr);
Back to the top of OHyMosString
void operator += (char ch);
Concatenates a character
void operator += (char ch);
Back to the top of OHyMosString
friend int operator==(const OHyMosString& x, const OHyMosString& y) ;
Comparison operator ==
friend int operator==(const OHyMosString& x, const OHyMosString& y) ;
Function is currently defined inline.
Back to the top of OHyMosString
friend int operator!=(const OHyMosString& x, const OHyMosString& y) ;
Comparison operator !=
friend int operator!=(const OHyMosString& x, const OHyMosString& y) ;
Function is currently defined inline.
Back to the top of OHyMosString
Back to the top of OHyMosString
Back to the top of OHyMosString
Back to the top of OHyMosString
Report problems to jkotula@stratasys.com