diff options
| author | Comment <tim@gray.(none)> | 2014-03-12 09:16:46 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2014-03-12 09:16:46 +0000 |
| commit | 8f9a8b4c06bb168b91cb0a3971c3dc37fb67220f (patch) | |
| tree | 16062fc67db1680066a47eba05d63e30950cd916 /offsetProject/src/imageStore.cpp | |
| parent | 63a6970325463b3533edbf910f88750cb2d096f1 (diff) | |
image store working
Diffstat (limited to 'offsetProject/src/imageStore.cpp')
| -rw-r--r-- | offsetProject/src/imageStore.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/offsetProject/src/imageStore.cpp b/offsetProject/src/imageStore.cpp new file mode 100644 index 0000000..da6241d --- /dev/null +++ b/offsetProject/src/imageStore.cpp @@ -0,0 +1,8 @@ +#include "imageStore.h" + +long ofToLong(const string& intString) { + long x = 0; + istringstream cur(intString); + cur >> x; + return x; +}
\ No newline at end of file |
