ReactOS 0.4.15-dev-7924-g5949c20
mypath Class Reference

Public Member Functions

 mypath (const string &s)
 
const mypathoperator/ (const string &)
 
const stringstr () const
 

Private Attributes

string p
 

Detailed Description

Definition at line 1127 of file string_test.cpp.

Constructor & Destructor Documentation

◆ mypath()

mypath::mypath ( const string s)
inline

Definition at line 1130 of file string_test.cpp.

1130 :
1131 p( s )
1132 { }
string p
GLdouble s
Definition: gl.h:2039

Member Function Documentation

◆ operator/()

const mypath & mypath::operator/ ( const string s)

Definition at line 1142 of file string_test.cpp.

1143{
1144 p += '/';
1145 p += s;
1146 return *this;
1147}
GLfloat GLfloat p
Definition: glext.h:8902

◆ str()

const string & mypath::str ( ) const
inline

Definition at line 1135 of file string_test.cpp.

1136 { return p; }

Member Data Documentation

◆ p

string mypath::p
private

Definition at line 1139 of file string_test.cpp.

Referenced by str().


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