DYTSrouce/Tool/matlab/include/MatlabDataArray/ObjectArray.hpp

16 lines
275 B
C++
Raw Normal View History

2024-11-22 15:19:31 +00:00
/* Copyright 2014-2017 The MathWorks, Inc. */
#ifndef MATLAB_DATA_OBJECT_ARRAY_HPP
#define MATLAB_DATA_OBJECT_ARRAY_HPP
#include "TypedArray.hpp"
namespace matlab {
namespace data {
class Object;
using ObjectArray = TypedArray<Object>;
}
}
#endif