summaryrefslogtreecommitdiffstats
path: root/src/definition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.h')
-rw-r--r--src/definition.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/definition.h b/src/definition.h
index 70aea3f..7353e38 100644
--- a/src/definition.h
+++ b/src/definition.h
@@ -53,7 +53,7 @@ class Definition
*/
virtual QCString getOutputFileBase() const = 0;
/*! Returns the name of the source listing of this file. */
- const QCString sourceName() const { return getOutputFileBase()+"-source"; }
+ const QCString getSourceFileBase() const { ASSERT(0); return "NULL"; }
/*! Returns the detailed description of this definition */
const QCString& documentation() const { return doc; }
/*! Returns the brief description of this definition */
@@ -81,14 +81,6 @@ class Definition
void setReference(const char *r) { ref=r; }
QCString getReference() const { return ref; }
- /*! returns the base file name that corresponds with the \a name of this
- * definition. This replaces a number of special characters in the
- * name by string that are more suitable to use in file names.
- * The function getOutputFileBase() also uses this function in most cases.
- * \sa setName(),Definition()
- */
- QCString nameToFile(const char *name,bool allowDot=FALSE);
-
/*! Add the list of anchors that mark the sections that are found in the
* documentation.
*/