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

@@ -50,7 +50,8 @@ class FunctionCall;
class CostItem;
class ParseData;
class VALGRINDSHARED_EXPORT Function {
class VALGRINDSHARED_EXPORT Function
{
public:
/// @p data the ParseData for the file this function was part of
/// required for the decompression of string data like function name etc.
@@ -143,6 +144,7 @@ public:
* for example
*/
void finalize();
protected:
class Private;
Private *d;
@@ -153,8 +155,8 @@ private:
Q_DISABLE_COPY(Function)
};
}
}
} // namespace Callgrind
} // namespace Valgrind
Q_DECLARE_METATYPE(const Valgrind::Callgrind::Function *);