Moving third party sources to third_party folder so that they can be easily distinguished. This should help package maintainers.
This commit is contained in:
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
#ifndef _BOOST_TIMERS_HPP
|
||||
#define _BOOST_TIMERS_HPP
|
||||
|
||||
// (C) Copyright Vaucher Philippe 2007
|
||||
|
||||
// Use, modification and distribution is subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying
|
||||
// file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0)
|
||||
// Author: Vaucher Philippe 2007
|
||||
|
||||
// -------------------------- Includes --------------------------
|
||||
|
||||
// Speeds up compilation a bit on msvc
|
||||
#if (defined _MSC_VER) && (_MSC_VER >= 1200)
|
||||
#pragma once
|
||||
#define _WINSOCKAPI_
|
||||
#endif
|
||||
|
||||
#include <boost/config.hpp>
|
||||
|
||||
#include "timers/timer.hpp"
|
||||
#include "timers/portable.hpp"
|
||||
|
||||
#ifdef BOOST_WINDOWS
|
||||
#include "timers/win32.hpp"
|
||||
#else
|
||||
#include "timers/posix.hpp"
|
||||
#endif
|
||||
|
||||
#endif // _BOOST_TIMERS_HPP
|
||||
Reference in New Issue
Block a user