| 306 | { |
| 307 | QiFunc_time_ds() : QiFunc(0, 1) {} |
| 308 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 309 | { |
| 310 | time_t s = args.empty() ? time(nullptr) : static_cast<time_t>(args[0].toInteger()); |
| 311 | tm m; |
| 312 | localtime_s(&m, &s); |
| 313 | return m.tm_sec; |
| 314 | } |
| 315 | }; |
| 316 | /* |
| 317 | int return: runtime duration msec |