diff options
author | albert-github <albert.tests@gmail.com> | 2019-07-07 10:30:12 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-07-07 10:30:12 (GMT) |
commit | 27bd3e6cb7a878fdeca0ece6e0a6612b59b8f716 (patch) | |
tree | 1f1410a5e914a6790a797f513942602186a20986 /src/docparser.h | |
parent | f2cd8f4550d1355a46c68b98036bd4cb22e53afb (diff) | |
download | Doxygen-27bd3e6cb7a878fdeca0ece6e0a6612b59b8f716.zip Doxygen-27bd3e6cb7a878fdeca0ece6e0a6612b59b8f716.tar.gz Doxygen-27bd3e6cb7a878fdeca0ece6e0a6612b59b8f716.tar.bz2 |
Remove not used class
As per comment in `docvisitor.h`:
```
class DocCopy; // TODO: no longer generated => remove
```
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/docparser.h b/src/docparser.h index ef01089..2cc607e 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -694,24 +694,6 @@ class DocIndexEntry : public DocNode //----------------------------------------------------------------------- -/** Node representing a copy of documentation block. */ -class DocCopy : public DocNode -{ - public: - DocCopy(DocNode *parent,const QCString &link,bool copyBrief,bool copyDetails) - : m_link(link), - m_copyBrief(copyBrief), m_copyDetails(copyDetails) { m_parent = parent; } - Kind kind() const { return Kind_Copy; } - QCString link() const { return m_link; } - void accept(DocVisitor * /*v*/) { /*CompAccept<DocCopy>::accept(this,v);*/ } - void parse(QList<DocNode> &children); - - private: - QCString m_link; - bool m_copyBrief; - bool m_copyDetails; -}; - /** Node representing an auto List */ class DocAutoList : public CompAccept<DocAutoList> { |