analyzer: style and simplification

This commit is contained in:
hjk
2011-05-18 17:05:49 +02:00
parent a130b98509
commit 68504ab8a8
82 changed files with 508 additions and 583 deletions

View File

@@ -44,7 +44,6 @@ class QIODevice;
QT_END_NAMESPACE
namespace Valgrind {
namespace XmlProtocol {
class AnnounceThread;
@@ -54,8 +53,10 @@ class Status;
/**
* Parser for the Valgrind Output XML Protocol 4
*/
class VALGRINDSHARED_EXPORT Parser : public QObject {
class VALGRINDSHARED_EXPORT Parser : public QObject
{
Q_OBJECT
public:
enum Tool {
Unknown,
@@ -82,8 +83,6 @@ Q_SIGNALS:
void finished();
private:
Q_DISABLE_COPY(Parser)
class Private;
Private *const d;
};