2016-01-02 03:02:34 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) FIRST 2014-2016. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2014-09-25 20:36:59 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-04-26 19:19:57 -04:00
|
|
|
#ifdef _WIN32
|
2016-05-20 17:30:37 -07:00
|
|
|
// Ensure that Winsock2.h is included before Windows.h, which can get
|
|
|
|
|
// pulled in by anybody (e.g., Boost).
|
|
|
|
|
#include <Winsock2.h>
|
2015-04-26 19:19:57 -04:00
|
|
|
#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
|
|
|
|
2016-05-20 17:30:37 -07:00
|
|
|
namespace wpilib {
|
|
|
|
|
namespace internal {
|
|
|
|
|
extern double simTime;
|
|
|
|
|
extern void time_callback(const msgs::ConstFloat64Ptr& msg);
|
|
|
|
|
}
|
|
|
|
|
}
|