2014-09-25 20:36:59 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-04-26 19:19:57 -04:00
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
// Ensure that Winsock2.h is included before Windows.h, which can get
|
|
|
|
|
// pulled in by anybody (e.g., Boost).
|
|
|
|
|
#include <Winsock2.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "simulation/SimFloatInput.h"
|
|
|
|
|
|
2015-07-02 14:33:24 -04:00
|
|
|
#include <condition_variable>
|
|
|
|
|
#include <mutex>
|
2015-06-25 01:54:20 -07:00
|
|
|
|
2014-09-25 20:36:59 -04:00
|
|
|
namespace wpilib { namespace internal {
|
|
|
|
|
extern double simTime;
|
2015-04-26 19:19:57 -04:00
|
|
|
extern void time_callback(const msgs::ConstFloat64Ptr &msg);
|
2014-09-25 20:36:59 -04:00
|
|
|
}}
|