Last change
on this file since 2290 was
1505,
checked in by rgrieder, 16 years ago
|
f* svn: It doesn't even inform you if you attempt to set a non existing property. It is svn:eol-style and not eol-style when using the command by the way…
|
-
Property svn:eol-style set to
native
|
File size:
257 bytes
|
Rev | Line | |
---|
[727] | 1 | #include "Convert.h" |
---|
| 2 | #include <iostream> |
---|
| 3 | |
---|
| 4 | int main(int argc, char** argv) |
---|
| 5 | { |
---|
[728] | 6 | int input = rand(); |
---|
[727] | 7 | std::string sub; |
---|
| 8 | int output = 0; |
---|
| 9 | |
---|
| 10 | ConvertValue(&sub, input); |
---|
| 11 | ConvertValue(&output, sub); |
---|
| 12 | |
---|
| 13 | if (input == output) |
---|
| 14 | return 0; |
---|
| 15 | else |
---|
| 16 | return -1; |
---|
| 17 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.