Definition at line 95 of file Sandbox.cpp.
◆ GccTest()
◆ operator int()
Definition at line 112 of file Sandbox.cpp.
113 {
114 cout << "its \"underload\"\n";
115 return 42;
116 }
◆ operator string()
Definition at line 104 of file Sandbox.cpp.
105 {
106
107 cout << "the first function\n";
109 return "42";
110 }
◆ operator vector< int >()
| operator vector< int > |
( |
| ) |
|
|
inline |
Definition at line 118 of file Sandbox.cpp.
119 {
120 cout << "within vector <int>" << endl;
121 vector <int> toReturn;
122 toReturn.push_back(3);
123 toReturn.push_back(4);
124 toReturn.push_back(5);
125 return toReturn;
126 }
◆ nameMember
The documentation for this struct was generated from the following file: