// Use of this source code is governed by a BSD 3-Clause License // that can be found in the LICENSE file. // Author: caozhiyi (caozhiyi5@gmail.com) #ifndef COMMON_TIMER_TIMER #define COMMON_TIMER_TIMER #include #include "timer_interface.h" namespace cppnet { std::shared_ptr MakeTimer50Ms(); std::shared_ptr MakeTimer1Sec(); std::shared_ptr MakeTimer1Min(); std::shared_ptr MakeTimer1Hour(); } #endif