ReactOS 0.4.15-dev-7953-g1f49173
superstring Class Reference

Public Member Functions

 superstring ()
 
 superstring (const string &str)
 
superstring operator/ (const string &str)
 
superstring operator/ (const char *str)
 

Private Attributes

string s
 

Detailed Description

Definition at line 1094 of file string_test.cpp.

Constructor & Destructor Documentation

◆ superstring() [1/2]

superstring::superstring ( )
inline

Definition at line 1097 of file string_test.cpp.

1097 :
1098 s("super")
1099 {}

Referenced by operator/().

◆ superstring() [2/2]

superstring::superstring ( const string str)
inline

Definition at line 1101 of file string_test.cpp.

1101 :
1102 s( str )
1103 {}
const WCHAR * str

Member Function Documentation

◆ operator/() [1/2]

superstring superstring::operator/ ( const char str)
inline

Definition at line 1108 of file string_test.cpp.

1109 { return superstring( s + "/" + str ); }
GLdouble s
Definition: gl.h:2039

◆ operator/() [2/2]

superstring superstring::operator/ ( const string str)
inline

Definition at line 1105 of file string_test.cpp.

1106 { return superstring( s + "/" + str ); }

Member Data Documentation

◆ s

string superstring::s
private

Definition at line 1112 of file string_test.cpp.


The documentation for this class was generated from the following file: