summaryrefslogtreecommitdiff
path: root/offsetProject/src/imageStore.cpp
blob: da6241d3673fd6d84b6f51980ccbad3e8841b147 (plain)
1
2
3
4
5
6
7
8
#include "imageStore.h"

long ofToLong(const string& intString) {
	long x = 0;
	istringstream cur(intString);
	cur >> x;
	return x;
}