Can we use SPL time functions inside C++ operators?

184 Views Asked by At

I want to use toTimestamp function inside cpp.So I am accessing it like SPL::Functions::time::toTimestamp(Sys.YYYYMMDDhhmmss,date).Problem is that its unable to recognize 'Sys'. What library should I include?

1

There are 1 best solutions below

0
On BEST ANSWER

Because the toTimestamp family of functions were designed to be called by SPL code, they're not easy to use directly in C++. (The reason being that they rely on generated tuple and enum types.) From C++, it's easier to use the timeStringToTimestamp family of functions.