I just needed to get the local time (computer clock / not utc in my case) milliseconds since 1970 (epoch). this is kind of trickier then I had thought at first, since time() (as I understand it) gets non localtime seconds since 1970. Anyway, some poking around poco got me to this, which seemed to work:
Poco::Timestamp epoch(0);
Poco::Timestamp now;
Poco::Timestamp::TimeDiff diffTime = (now - epoch);
long long millisSince1970 = (long long) (diffTime/1000);
timestamp seems pretty cool, and the date times stuff was fairly flexible. +1 for poco