Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27446
Modified Files:
libcompbenchmarks.h
Log Message:
For SF's TID #141819 : documenting (Doxygen).
Index: libcompbenchmarks.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/libcompbenchmarks.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** libcompbenchmarks.h 7 Jun 2007 16:22:31 -0000 1.3
--- libcompbenchmarks.h 4 Sep 2007 17:33:19 -0000 1.4
***************
*** 26,31 ****
namespace CBM {
typedef enum Verbosity {
! None, Basic, All
};
--- 26,38 ----
namespace CBM {
+ /** Verbosity of UI
+ *
+ * Defines verbosity of CBM::UIMsg message objects shown by
+ * CBM::UI object hierarchy.
+ */
typedef enum Verbosity {
! None, /*!< Disabled (no message). */
! Basic, /*<! Most messages will be taken in care. */
! All /*<! All messages will be taken in care. */
};
***************
*** 42,45 ****
--- 49,53 ----
extern Verbosity UO_verbose;
+ /** Verbosity flag for dl*() C functions */
extern int UO_verbose_dl;
}
|