removed get from the users class and changed put

This commit is contained in:
Erik Frojdh
2019-01-17 14:20:03 +01:00
parent 76da6a07aa
commit c05829031f
4 changed files with 112 additions and 142 deletions

View File

@ -4,6 +4,8 @@
#include <iostream>
#include <string>
namespace sls{
class Timer {
using clock = std::chrono::high_resolution_clock;
using time_point = std::chrono::time_point<clock>;
@ -31,4 +33,6 @@ class Timer {
std::string name_;
};
}; //namespace sls
#endif // TIMER_H