Friendiqa/source-android/androidnative.pri/examples/androidnativeexample/debugwrapper.h
2017-11-08 21:15:07 +01:00

21 lines
310 B
C++

#ifndef DEBUGWRAPPER_H
#define DEBUGWRAPPER_H
#include <QObject>
class DebugWrapper : public QObject
{
Q_OBJECT
public:
explicit DebugWrapper(QObject *parent = 0);
signals:
public slots:
long getNativeHeapSize() const;
long getNativeHeapAllocatedSize() const;
};
#endif // DEBUGWRAPPER_H