| 68 | int i; |
| 69 | public: |
| 70 | StringUser(const char *string="NO", int integer=99) : s(strdup(string)), i(integer) {} |
| 71 | ~StringUser() { free(s); } |
| 72 | void Print(int anotherInteger, char *anotherString) { |
| 73 | printf("|%s|%d|%s|%d|\n", s, i, anotherString, anotherInteger); |