summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-02-20 21:09:54 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-02-20 21:09:54 (GMT)
commit34d4ace6d4037862b6d280f1d7534292c714bf59 (patch)
treea9a7b7b5542fbc9a2189f8ae6b39379770043b48 /src/util.h
parentc22d77a7a9c0f26a060a58047f514869a9e0a067 (diff)
downloadDoxygen-34d4ace6d4037862b6d280f1d7534292c714bf59.zip
Doxygen-34d4ace6d4037862b6d280f1d7534292c714bf59.tar.gz
Doxygen-34d4ace6d4037862b6d280f1d7534292c714bf59.tar.bz2
Release-1.7.6.1-20120220
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h26
1 files changed, 5 insertions, 21 deletions
diff --git a/src/util.h b/src/util.h
index 9bc235c..f7aa91f 100644
--- a/src/util.h
+++ b/src/util.h
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2011 by Dimitri van Heesch.
+ * Copyright (C) 1997-2012 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
@@ -27,6 +27,7 @@
#include <qtextstream.h>
#include <ctype.h>
#include "sortdict.h"
+#include "types.h"
//--------------------------------------------------------------------
@@ -87,27 +88,8 @@ class TextGeneratorOLImpl : public TextGeneratorIntf
//--------------------------------------------------------------------
-enum SrcLangExt
-{
- SrcLangExt_Unknown = 0x00000,
- SrcLangExt_IDL = 0x00008,
- SrcLangExt_Java = 0x00010,
- SrcLangExt_CSharp = 0x00020,
- SrcLangExt_D = 0x00040,
- SrcLangExt_PHP = 0x00080,
- SrcLangExt_ObjC = 0x00100,
- SrcLangExt_Cpp = 0x00200,
- SrcLangExt_JS = 0x00400,
- SrcLangExt_Python = 0x00800,
- SrcLangExt_Fortran = 0x01000,
- SrcLangExt_VHDL = 0x02000,
- SrcLangExt_XML = 0x04000,
- SrcLangExt_Tcl = 0x08000,
- SrcLangExt_Markdown = 0x10000
-};
-
QCString langToString(SrcLangExt lang);
-QCString getLanguageSpecificSeparator(SrcLangExt lang);
+QCString getLanguageSpecificSeparator(SrcLangExt lang,bool classScope=FALSE);
//--------------------------------------------------------------------
@@ -419,5 +401,7 @@ QCString correctURL(const QCString &url,const QCString &relPath);
QCString processMarkup(const QCString &s);
+bool protectionLevelVisible(Protection prot);
+
#endif