blob: 7f3fe1cde856cdf4a180ae4391cd454ccd64facf [file] [log] [blame]
Austin Schuh7400da02018-01-28 19:54:58 -08001/**********************************************************************************************************************
2This file is part of the Control Toolbox (https://adrlab.bitbucket.io/ct), copyright by ETH Zurich, Google Inc.
3Authors: Michael Neunert, Markus Giftthaler, Markus Stäuble, Diego Pardo, Farbod Farshidian
4Licensed under Apache2 license (see LICENSE file in main directory)
5**********************************************************************************************************************/
6
7#pragma once
8
9#ifdef MATLAB_FULL_LOG
10#define MATLAB
11#endif // MATLAB_FULL_LOG
12
13#ifdef MATLAB
14#include <matlabCppInterface/MatFile.hpp>
15#else //MATLAB
16namespace matlab {
17//! a dummy class which is created for compatibility reasons if the MATLAB flag is not set.
18class MatFile
19{
20public:
21 MatFile() {}
22};
23} // namespace matlab
24#endif //MATLAB