Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
VAMatlabConnection.h 1.03 KiB
/*
* --------------------------------------------------------------------------------------------
*
* VVV VVV A Virtual Acoustics (VA) | http://www.virtualacoustics.org
* VVV VVV AAA Licensed under the Apache License, Version 2.0
* VVV VVV AAA
* VVV VVV AAA Copyright 2015-2017
* VVVVVV AAA Institute of Technical Acoustics (ITA)
* VVVV AAA RWTH Aachen University
*
* --------------------------------------------------------------------------------------------
*/
#ifndef IW_VA_MATLAB_CONNECTION
#define IW_VA_MATLAB_CONNECTION
// STL includes
#include <string>
#include <vector>
class IVAInterface;
class CVAMatlabTracker;
class IVANetClient;
//! Connection data class
class CVAMatlabConnection
{
public:
IVANetClient* pClient;
IVAInterface* pCoreInterface;
CVAMatlabTracker* pVAMatlabTracker;
CVAMatlabConnection();
~CVAMatlabConnection();
bool IsConnected() const;
};
#endif // INCLUDE_WATCHER_VA_MATLAB_CONNECTION