diff --git a/wrap/Class.cpp b/wrap/Class.cpp index e61e06ec2..652753cc0 100644 --- a/wrap/Class.cpp +++ b/wrap/Class.cpp @@ -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; } /* ************************************************************************* */ diff --git a/wrap/Method.cpp b/wrap/Method.cpp index 1fe6b022b..60a9f00e3 100644 --- a/wrap/Method.cpp +++ b/wrap/Method.cpp @@ -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) diff --git a/wrap/StaticMethod.cpp b/wrap/StaticMethod.cpp index d4c7d8a1d..b2c757e96 100644 --- a/wrap/StaticMethod.cpp +++ b/wrap/StaticMethod.cpp @@ -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)