Sha256: b4f455583e41c00cb7c1e354ba10f0040bb6049561791a64d10311d3d55df251
Contents?: true
Size: 1.57 KB
Versions: 20
Compression:
Stored size: 1.57 KB
Contents
/* Copyright (C) 2007 David Nolden <david.nolden.kdevelop@art-master.de> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef COMMENTFORMATTER_H #define COMMENTFORMATTER_H #include "cppparser_export.h" #include <QString> template<class Tp> class ListNode; /** * This class cares about extracting the interesting information out of a comment. * For example it removes all the stars at the beginning, and re-indents the text. * */ class ParseSession; class CPPPARSER_EXPORT CommentFormatter { public: ///Processes the comment represented by the given token-number within the parse-session's token-stream static QByteArray formatComment( size_t token, const ParseSession* session ); ///Processes the list of comments represented by the given token-number within the parse-session's token-stream static QByteArray formatComment( const ListNode<size_t>* node, const ParseSession* session ); private: }; #endif
Version data entries
20 entries across 20 versions & 2 rubygems