1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
//===- Timer.cpp ----------------------------------------------------------===//
//
// The SkyPat Team
//
// This file is distributed under the New BSD License.
// See LICENSE for details.
//
//===----------------------------------------------------------------------===//
#include <skypat/Support/Timer.h>
#include <skypat/Config/Config.h>
//===----------------------------------------------------------------------===//
// Timer Implementation
//===----------------------------------------------------------------------===//
#if defined(SKYPAT_ON_WIN32)
#include "Windows/Timer.inc"
#endif
#if defined(SKYPAT_ON_UNIX)
#include "Unix/Timer.inc"
#endif
#if defined(SKYPAT_ON_DRAGON)
#include "Dragon/Timer.inc"
#endif
|