Just renamed the timer source files.

--HG--
rename : dlib/timer/timer_kernel_2.cpp => dlib/timer/timer.cpp
rename : dlib/timer/timer_kernel_2.h => dlib/timer/timer.h
rename : dlib/timer/timer_kernel_abstract.h => dlib/timer/timer_abstract.h
rename : dlib/timer/timer_kernel_1.h => dlib/timer/timer_heavy.h
This commit is contained in:
Davis King 2012-11-18 12:54:23 -05:00
parent f6ad04c884
commit b94fc34257
6 changed files with 14 additions and 14 deletions

View File

@ -47,7 +47,7 @@
#include "../threads/threads_kernel_2.cpp"
#include "../threads/threads_kernel_shared.cpp"
#include "../threads/thread_pool_extension.cpp"
#include "../timer/timer_kernel_2.cpp"
#include "../timer/timer.cpp"
#include "../stack_trace.cpp"
#ifdef DLIB_PNG_SUPPORT

View File

@ -3,8 +3,8 @@
#ifndef DLIB_TIMEr_
#define DLIB_TIMEr_
#include "timer/timer_kernel_1.h"
#include "timer/timer_kernel_2.h"
#include "timer/timer.h"
#include "timer/timer_heavy.h"
#endif // DLIB_TIMEr_

View File

@ -1,9 +1,9 @@
// Copyright (C) 2007 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_TIMER_KERNEl_2_CPP
#define DLIB_TIMER_KERNEl_2_CPP
#ifndef DLIB_TIMER_cPP__
#define DLIB_TIMER_cPP__
#include "timer_kernel_2.h"
#include "timer.h"
namespace dlib
{
@ -204,5 +204,5 @@ namespace dlib
}
#endif // DLIB_TIMER_KERNEl_2_CPP
#endif // DLIB_TIMER_cPP__

View File

@ -1,16 +1,16 @@
// Copyright (C) 2007 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_TIMER_KERNEl_2_
#define DLIB_TIMER_KERNEl_2_
#ifndef DLIB_TIMEr_H__
#define DLIB_TIMEr_H__
#include "../threads.h"
#include "../algs.h"
#include "../misc_api.h"
#include "timer_kernel_abstract.h"
#include "timer_abstract.h"
#include "../uintn.h"
#include "../binary_search_tree.h"
#include "../smart_pointers_thread_safe.h"
#include "timer_kernel_1.h"
#include "timer_heavy.h"
namespace dlib
{
@ -418,9 +418,9 @@ namespace dlib
}
#ifdef NO_MAKEFILE
#include "timer_kernel_2.cpp"
#include "timer.cpp"
#endif
#endif // DLIB_TIMER_KERNEl_2_
#endif // DLIB_TIMEr_H__

View File

@ -6,7 +6,7 @@
#include "../threads.h"
#include "../algs.h"
#include "../misc_api.h"
#include "timer_kernel_abstract.h"
#include "timer_abstract.h"
namespace dlib
{