ewmscp  ..
test.cpp
Go to the documentation of this file.
1 #include <iostream>
2 #include <typeinfo>
3 #include <map>
4 #include <string>
5 #include <chrono>
6 
7 int main(int argc, const char* argv[]) {
8  std::chrono::system_clock::time_point p(std::chrono::seconds(1) + std::chrono::nanoseconds(1000000));
9  std::cout << p.time_since_epoch().count() << "\n";
10  return 0;
11 }
main
int main(int argc, const char *argv[])
Definition: test.cpp:7