matlab_workspace.h 500 B

12345678910111213141516171819202122
  1. #ifndef IGL_WRITE_MATLAB_WORKSPACE
  2. #define IGL_WRITE_MATLAB_WORKSPACE
  3. #include "igl_inline.h"
  4. namespace igl
  5. {
  6. // Class which contains data of a matlab workspace which can be written to a
  7. // .mat file and loaded from matlab
  8. //
  9. // This depends on matlab at compile time (though it shouldn't necessarily
  10. // have to) but it does not depend on running the matlab engine at run-time.
  11. class matlab_workspace
  12. {
  13. };
  14. }
  15. #ifdef IGL_HEADER_ONLY
  16. # include "matlab_workspace.cpp"
  17. #endif
  18. #endif