summaryrefslogtreecommitdiffstats
path: root/src/dbusxmlscanner.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-04-19 08:43:13 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-04-19 08:43:13 (GMT)
commitbf4aee305879406d9057864ab7f8938e01ca8bd0 (patch)
treebc7a1c90054b69c15cefafde8afad6195dc03087 /src/dbusxmlscanner.h
parent2d7481801e1072bc5fa45cbb0522597fcf1e9793 (diff)
downloadDoxygen-bf4aee305879406d9057864ab7f8938e01ca8bd0.zip
Doxygen-bf4aee305879406d9057864ab7f8938e01ca8bd0.tar.gz
Doxygen-bf4aee305879406d9057864ab7f8938e01ca8bd0.tar.bz2
Removed dbus XML parser, various refinements
Diffstat (limited to 'src/dbusxmlscanner.h')
-rw-r--r--src/dbusxmlscanner.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/dbusxmlscanner.h b/src/dbusxmlscanner.h
deleted file mode 100644
index e1504e9..0000000
--- a/src/dbusxmlscanner.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/******************************************************************************
- *
- *
- *
- * Copyright (C) 2009 by Tobias Hunger <tobias@aquazul.com>
- *
- * Permission to use, copy, modify, and distribute this software and its
- * documentation under the terms of the GNU General Public License is hereby
- * granted. No representations are made about the suitability of this software
- * for any purpose. It is provided "as is" without express or implied warranty.
- * See the GNU General Public License for more details.
- *
- * Documents produced by Doxygen are derivative works derived from the
- * input used in their production; they are not affected by this license.
- *
- */
-
-#ifndef SCANNER_DBUSXML_H
-#define SCANNER_DBUSXML_H
-
-#include "parserintf.h"
-
-/** D-Bus XML parser.
- *
- * This is the D-Bus XML parser for doxygen.
- */
-class DBusXMLScanner : public ParserInterface
-{
-public:
- DBusXMLScanner();
- virtual ~DBusXMLScanner();
- void startTranslationUnit(const char *) {}
- void finishTranslationUnit() {}
- void parseInput(const char *fileName,
- const char *fileBuf,
- Entry *root,
- bool sameTranslationUnit,
- QStrList &filesInSameTranslationUnit);
-
- bool needsPreprocessing(const QCString &extension);
-
- void parseCode(CodeOutputInterface &codeOutIntf,
- const char *scopeName,
- const QCString &input,
- SrcLangExt lang,
- bool isExampleBlock,
- const char *exampleName=0,
- FileDef *fileDef=0,
- int startLine=-1,
- int endLine=-1,
- bool inlineFragment=FALSE,
- MemberDef *memberDef=0,
- bool showLineNumbers=TRUE,
- Definition *searchCtx=0,
- bool collectXRefs=TRUE
- );
-
- void resetCodeParserState();
-
- void parsePrototype(const char *text);
-
-private:
-};
-
-#endif