Changed method summaries to lower case

release/4.3a0
Andrew Melim 2012-09-03 22:48:08 +00:00
parent 947588586c
commit 9938b4785d
10 changed files with 47 additions and 47 deletions

View File

@ -332,7 +332,7 @@ void Class::comment_fragment(FileWriter& proxyFile) const
{ {
string up_name = boost::to_upper_copy(name); string up_name = boost::to_upper_copy(name);
proxyFile.oss << "%" << up_name << "("; proxyFile.oss << "%" << name << "(";
unsigned int i = 0; unsigned int i = 0;
BOOST_FOREACH(const Argument& arg, argList) BOOST_FOREACH(const Argument& arg, argList)
{ {
@ -352,7 +352,7 @@ void Class::comment_fragment(FileWriter& proxyFile) const
BOOST_FOREACH(ArgumentList argList, m.argLists) BOOST_FOREACH(ArgumentList argList, m.argLists)
{ {
string up_name = boost::to_upper_copy(m.name); string up_name = boost::to_upper_copy(m.name);
proxyFile.oss << "%" << up_name << "("; proxyFile.oss << "%" << m.name << "(";
unsigned int i = 0; unsigned int i = 0;
BOOST_FOREACH(const Argument& arg, argList) BOOST_FOREACH(const Argument& arg, argList)
{ {
@ -373,7 +373,7 @@ void Class::comment_fragment(FileWriter& proxyFile) const
BOOST_FOREACH(ArgumentList argList, m.argLists) BOOST_FOREACH(ArgumentList argList, m.argLists)
{ {
string up_name = boost::to_upper_copy(m.name); string up_name = boost::to_upper_copy(m.name);
proxyFile.oss << "%" << up_name << "("; proxyFile.oss << "%" << m.name << "(";
unsigned int i = 0; unsigned int i = 0;
BOOST_FOREACH(const Argument& arg, argList) BOOST_FOREACH(const Argument& arg, argList)
{ {

View File

@ -1,15 +1,15 @@
%-------Constructors------- %-------Constructors-------
%POINT2() %Point2()
%POINT2(double x, double y) %Point2(double x, double y)
% %
%-------Methods------- %-------Methods-------
%ARGCHAR(char a) : returns void %argChar(char a) : returns void
%ARGUCHAR(unsigned char a) : returns void %argUChar(unsigned char a) : returns void
%DIM() : returns int %dim() : returns int
%RETURNCHAR() : returns char %returnChar() : returns char
%VECTORCONFUSION() : returns VectorNotEigen %vectorConfusion() : returns VectorNotEigen
%X() : returns double %x() : returns double
%Y() : returns double %y() : returns double
% %
%-------Static Methods------- %-------Static Methods-------
% %

View File

@ -1,12 +1,12 @@
%-------Constructors------- %-------Constructors-------
%POINT3(double x, double y, double z) %Point3(double x, double y, double z)
% %
%-------Methods------- %-------Methods-------
%NORM() : returns double %norm() : returns double
% %
%-------Static Methods------- %-------Static Methods-------
%STATICFUNCTIONRET(double z) : returns Point3 %StaticFunctionRet(double z) : returns Point3
%STATICFUNCTION() : returns double %staticFunction() : returns double
% %
%For more detailed documentation on GTSAM go to our Doxygen page, which can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html %For more detailed documentation on GTSAM go to our Doxygen page, which can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html
classdef Point3 < handle classdef Point3 < handle

View File

@ -1,27 +1,27 @@
%-------Constructors------- %-------Constructors-------
%TEST() %Test()
%TEST(double a, Matrix b) %Test(double a, Matrix b)
% %
%-------Methods------- %-------Methods-------
%ARG_EIGENCONSTREF(Matrix value) : returns void %arg_EigenConstRef(Matrix value) : returns void
%CREATE_MIXEDPTRS() : returns pair< Test, SharedTest > %create_MixedPtrs() : returns pair< Test, SharedTest >
%CREATE_PTRS() : returns pair< SharedTest, SharedTest > %create_ptrs() : returns pair< SharedTest, SharedTest >
%PRINT() : returns void %print() : returns void
%RETURN_POINT2PTR(bool value) : returns Point2 %return_Point2Ptr(bool value) : returns Point2
%RETURN_TEST(Test value) : returns Test %return_Test(Test value) : returns Test
%RETURN_TESTPTR(Test value) : returns Test %return_TestPtr(Test value) : returns Test
%RETURN_BOOL(bool value) : returns bool %return_bool(bool value) : returns bool
%RETURN_DOUBLE(double value) : returns double %return_double(double value) : returns double
%RETURN_FIELD(Test t) : returns bool %return_field(Test t) : returns bool
%RETURN_INT(int value) : returns int %return_int(int value) : returns int
%RETURN_MATRIX1(Matrix value) : returns Matrix %return_matrix1(Matrix value) : returns Matrix
%RETURN_MATRIX2(Matrix value) : returns Matrix %return_matrix2(Matrix value) : returns Matrix
%RETURN_PAIR(Vector v, Matrix A) : returns pair< Vector, Matrix > %return_pair(Vector v, Matrix A) : returns pair< Vector, Matrix >
%RETURN_PTRS(Test p1, Test p2) : returns pair< SharedTest, SharedTest > %return_ptrs(Test p1, Test p2) : returns pair< SharedTest, SharedTest >
%RETURN_SIZE_T(size_t value) : returns size_t %return_size_t(size_t value) : returns size_t
%RETURN_STRING(string value) : returns string %return_string(string value) : returns string
%RETURN_VECTOR1(Vector value) : returns Vector %return_vector1(Vector value) : returns Vector
%RETURN_VECTOR2(Vector value) : returns Vector %return_vector2(Vector value) : returns Vector
% %
%-------Static Methods------- %-------Static Methods-------
% %

View File

@ -1,5 +1,5 @@
%-------Constructors------- %-------Constructors-------
%CLASSA() %ClassA()
% %
%-------Methods------- %-------Methods-------
% %

View File

@ -1,5 +1,5 @@
%-------Constructors------- %-------Constructors-------
%CLASSB() %ClassB()
% %
%-------Methods------- %-------Methods-------
% %

View File

@ -1,5 +1,5 @@
%-------Constructors------- %-------Constructors-------
%CLASSB() %ClassB()
% %
%-------Methods------- %-------Methods-------
% %

View File

@ -1,13 +1,13 @@
%-------Constructors------- %-------Constructors-------
%CLASSA() %ClassA()
% %
%-------Methods------- %-------Methods-------
%MEMBERFUNCTION() : returns double %memberFunction() : returns double
%NSARG(ClassB arg) : returns int %nsArg(ClassB arg) : returns int
%NSRETURN(double q) : returns ns2::ns3::ClassB %nsReturn(double q) : returns ns2::ns3::ClassB
% %
%-------Static Methods------- %-------Static Methods-------
%AFUNCTION() : returns double %afunction() : returns double
% %
%For more detailed documentation on GTSAM go to our Doxygen page, which can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html %For more detailed documentation on GTSAM go to our Doxygen page, which can be found at http://research.cc.gatech.edu/borg/sites/edu.borg/html/index.html
classdef ClassA < handle classdef ClassA < handle

View File

@ -1,5 +1,5 @@
%-------Constructors------- %-------Constructors-------
%CLASSC() %ClassC()
% %
%-------Methods------- %-------Methods-------
% %

View File

@ -1,5 +1,5 @@
%-------Constructors------- %-------Constructors-------
%CLASSD() %ClassD()
% %
%-------Methods------- %-------Methods-------
% %