played a bit with doxygen and tried some small tweeks...

This commit is contained in:
Fischlurch 2007-08-24 02:58:13 +02:00
parent dba25a7f7b
commit 6d9ce217bd
7 changed files with 20 additions and 9 deletions

View file

@ -28,12 +28,12 @@ FULL_PATH_NAMES = YES
STRIP_FROM_PATH = ../../src/
STRIP_FROM_INC_PATH =
SHORT_NAMES = NO
JAVADOC_AUTOBRIEF = NO
JAVADOC_AUTOBRIEF = YES
MULTILINE_CPP_IS_BRIEF = NO
DETAILS_AT_TOP = NO
INHERIT_DOCS = YES
SEPARATE_MEMBER_PAGES = NO
TAB_SIZE = 8
TAB_SIZE = 4
ALIASES =
OPTIMIZE_OUTPUT_FOR_C = NO
OPTIMIZE_OUTPUT_JAVA = NO
@ -52,7 +52,7 @@ HIDE_UNDOC_MEMBERS = NO
HIDE_UNDOC_CLASSES = NO
HIDE_FRIEND_COMPOUNDS = NO
HIDE_IN_BODY_DOCS = NO
INTERNAL_DOCS = NO
INTERNAL_DOCS = YES
CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
SHOW_INCLUDE_FILES = YES
@ -74,7 +74,7 @@ FILE_VERSION_FILTER =
#---------------------------------------------------------------------------
QUIET = NO
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_UNDOCUMENTED = NO
WARN_IF_DOC_ERROR = YES
WARN_NO_PARAMDOC = NO
WARN_FORMAT = "$file:$line: $text"
@ -82,7 +82,8 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = ../../src/
INPUT = ../../src/ \
../../tests/
FILE_PATTERNS = *.c \
*.cc \
*.cxx \

View file

@ -93,7 +93,7 @@ namespace cinelerra
typedef std::map<string,string> Configmap;
typedef std::auto_ptr<Configmap> PConfig;
/** @TODO <b>the following is just placeholder code!</b>
/** @todo <b>the following is just placeholder code!</b>
* Appconfig <i>could</i> do such things if necessary,
* or provide similar "allways available" services.
*/

View file

@ -115,8 +115,8 @@ namespace test
/** forward the accummulated help messages from all
* contained option defintions to the outputstream
/** @intern forward the accummulated help messages from
* all contained option defintions to the outputstream
*/
ostream&
operator<< (ostream& os, const TestOption& to)

View file

@ -37,6 +37,10 @@ namespace cinelerra
public:
};
///// @test the various object creation factories
///// @see cinelerra::Factory
///// @todo still to be written...
/////
class Factory_test : public Test
{
virtual void run(Arg arg)

View file

@ -43,6 +43,7 @@ namespace util
{
///// @test for util::Cmndline, wrapping various example cmdlines
class CmdlineWrapper_test : public Test
{
virtual void run (Arg arg)

View file

@ -33,6 +33,11 @@ using std::endl;
namespace test
{
///// @test for test::TestOption, parsing of commandline options
///// for running collections of Tests
///// @see test::Suite
///// @see util::Cmdline
/////
class TestOption_test : public Test
{
virtual void run(Arg arg)

View file

@ -30,7 +30,7 @@ namespace cinelerra
namespace test
{
///// @test demo of using the test framework
class HelloWorld_test : public Test
{
virtual void run(Arg arg)