Added doxygen info to wrap commenting system

release/4.3a0
Andrew Melim 2012-08-27 15:30:47 +00:00
parent 6da48bc580
commit c3e615b2df
3 changed files with 7 additions and 2 deletions

View File

@ -380,5 +380,8 @@ void Class::comment_fragment(FileWriter& proxyFile) const
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;
}
/* ************************************************************************* */

View File

@ -47,7 +47,8 @@ void Method::proxy_wrapper_fragments(FileWriter& proxyFile, FileWriter& wrapperF
proxyFile.oss << " function varargout = " << name << "(this, varargin)\n";
//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 << " % " << "Method Overloads" << endl;
BOOST_FOREACH(ArgumentList argList, argLists)

View File

@ -50,7 +50,8 @@ void StaticMethod::proxy_wrapper_fragments(FileWriter& proxyFile, FileWriter& wr
string upperName = name; upperName[0] = std::toupper(upperName[0], std::locale());
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 << " % " << "Method Overloads" << endl;
BOOST_FOREACH(ArgumentList argList, argLists)