summaryrefslogtreecommitdiffstats
path: root/trunk/src/arguments.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/arguments.cpp')
-rw-r--r--trunk/src/arguments.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/trunk/src/arguments.cpp b/trunk/src/arguments.cpp
deleted file mode 100644
index 128223b..0000000
--- a/trunk/src/arguments.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "arguments.h"
-
-/*! the argument list is documented if one of its
- * arguments is documented
- */
-bool ArgumentList::hasDocumentation() const
-{
- bool hasDocs=FALSE;
- ArgumentListIterator ali(*this);
- Argument *a;
- for (ali.toFirst();!hasDocs && (a=ali.current());++ali)
- {
- hasDocs = a->hasDocumentation();
- }
- return hasDocs;
-}
-