Added doxygen info to wrap commenting system
parent
6da48bc580
commit
c3e615b2df
|
@ -380,5 +380,8 @@ void Class::comment_fragment(FileWriter& proxyFile) const
|
||||||
proxyFile.oss << ")" << endl;
|
proxyFile.oss << ")" << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
proxyFile.oss << "%" << "" << endl;
|
||||||
|
proxyFile.oss << "%" << "Doxygen can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html" << endl;
|
||||||
}
|
}
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
|
|
|
@ -47,7 +47,8 @@ void Method::proxy_wrapper_fragments(FileWriter& proxyFile, FileWriter& wrapperF
|
||||||
|
|
||||||
proxyFile.oss << " function varargout = " << name << "(this, varargin)\n";
|
proxyFile.oss << " function varargout = " << name << "(this, varargin)\n";
|
||||||
//Comments for documentation
|
//Comments for documentation
|
||||||
proxyFile.oss << " % " << name << " See GTSAM Doc for detailed info." << endl;
|
proxyFile.oss << " % " << name << " See GTSAM Doxygen html for detailed info." << endl;
|
||||||
|
proxyFile.oss << " % " << "Doxygen can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html" << endl;
|
||||||
proxyFile.oss << " % " << "" << endl;
|
proxyFile.oss << " % " << "" << endl;
|
||||||
proxyFile.oss << " % " << "Method Overloads" << endl;
|
proxyFile.oss << " % " << "Method Overloads" << endl;
|
||||||
BOOST_FOREACH(ArgumentList argList, argLists)
|
BOOST_FOREACH(ArgumentList argList, argLists)
|
||||||
|
|
|
@ -50,7 +50,8 @@ void StaticMethod::proxy_wrapper_fragments(FileWriter& proxyFile, FileWriter& wr
|
||||||
string upperName = name; upperName[0] = std::toupper(upperName[0], std::locale());
|
string upperName = name; upperName[0] = std::toupper(upperName[0], std::locale());
|
||||||
|
|
||||||
proxyFile.oss << " function varargout = " << upperName << "(varargin)\n";
|
proxyFile.oss << " function varargout = " << upperName << "(varargin)\n";
|
||||||
proxyFile.oss << " % " << name << " See GTSAM Doc for detailed info." << endl;
|
proxyFile.oss << " % " << name << " See GTSAM Doxygen html for detailed info." << endl;
|
||||||
|
proxyFile.oss << " % " << "Doxygen can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html" << endl;
|
||||||
proxyFile.oss << " % " << "" << endl;
|
proxyFile.oss << " % " << "" << endl;
|
||||||
proxyFile.oss << " % " << "Method Overloads" << endl;
|
proxyFile.oss << " % " << "Method Overloads" << endl;
|
||||||
BOOST_FOREACH(ArgumentList argList, argLists)
|
BOOST_FOREACH(ArgumentList argList, argLists)
|
||||||
|
|
Loading…
Reference in New Issue