Commit 24b037d5 authored by Davis King's avatar Davis King

Fixed tabbing

parent 032a8bf6
...@@ -4862,15 +4862,15 @@ void mexFunction( int nlhs, mxArray *plhs[], ...@@ -4862,15 +4862,15 @@ void mexFunction( int nlhs, mxArray *plhs[],
size_t load_obj_idx = 0; size_t load_obj_idx = 0;
cout << "classdef " << classname << " < handle\n" cout << "classdef " << classname << " < handle\n"
<< " properties (Access = private)\n" << " properties (Access = private)\n"
<< " cpp_ptr\n" << " cpp_ptr\n"
<< " end\n" << " end\n"
<< "\n" << "\n"
<< " methods\n" << " methods\n"
<< " function this = "<<classname<<"()\n" << " function this = "<<classname<<"()\n"
<< " this.cpp_ptr = "<<mex_filename<<"('construct');\n" << " this.cpp_ptr = "<<mex_filename<<"('construct');\n"
<< " end\n" << " end\n"
<< "\n"; << "\n";
for (size_t i = 0; i < methods.size(); ++i) for (size_t i = 0; i < methods.size(); ++i)
{ {
if (methods[i] == "load_obj") if (methods[i] == "load_obj")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment