DYT/Tool/matlab/include/MatlabEngine/engine_util.hpp
2024-11-22 23:19:31 +08:00

29 lines
549 B
C++

/* Copyright 2017-2020 The MathWorks, Inc. */
#ifndef ENGINE_UTIL_HPP
#define ENGINE_UTIL_HPP
#include "cpp_engine_api.hpp"
#include "MatlabExecutionInterface/util.hpp"
#include <mutex>
#include <algorithm>
#include <ratio>
#include <cstring>
namespace matlab {
namespace engine {
typedef matlab::execution::StreamBuffer StreamBuffer;
typedef std::u16string String;
class MATLABEngine;
enum class WorkspaceType {
BASE = 0,
GLOBAL = 1
};
}
}
#endif //ENGINE_UTIL_HPP