29 lines
549 B
C++
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
|