diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-03 19:17:37 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-03 19:17:37 (GMT) |
commit | 6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31 (patch) | |
tree | d54a211783205791dc3ce2ad8349f9fd7d1bce20 /src/classdef.h | |
parent | e913d55b2e5a8e37ebd1ffd8fec730886a45fbda (diff) | |
download | Doxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.zip Doxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.tar.gz Doxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.tar.bz2 |
Bug 734077 - no uniquely matching class member found for inline function definition where parameter argument names don't match
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/classdef.h b/src/classdef.h index 8c5bebf..dee4ef4 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -271,6 +271,9 @@ class ClassDef : public Definition /** Returns TRUE if this class represents an Objective-C 2.0 extension (nameless category) */ bool isExtension() const; + /** Returns TRUE if this class represents a forward declaration of a template class */ + bool isForwardDeclared() const; + /** Returns the class of which this is a category (Objective-C only) */ ClassDef *categoryOf() const; |