/*----------------------------------------------------------------------------*/ /* Copyright (c) FIRST 2017. 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. */ /*----------------------------------------------------------------------------*/ #pragma once #include #include "MockData/NotifyListenerVector.h" std::shared_ptr RegisterCallback( std::shared_ptr currentVector, const char* name, HAL_NotifyCallback callback, void* param, int32_t* newUid); std::shared_ptr CancelCallback( std::shared_ptr currentVector, int32_t uid); void InvokeCallback(std::shared_ptr currentVector, const char* name, const HAL_Value* value);