##// END OF EJS Templates
New register explorer WIP...
New register explorer WIP !!!!!!!!!!!!!!!!!!!!!!!!!!!!! REMOVED OLD genericPySysdriver interface Now the plugins are directly exposed to python. ABI not compatible with previous plugins. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!

File last commit:

r73:680fae912f57 default
r79:3440ba47d0f1 default
Show More
memtester.h
19 lines | 469 B | text/x-c | CLexer
#ifndef MEMTESTER_H
#define MEMTESTER_H
#include <socexplorerplugin.h>
#include <QObject>
class MemTester : public QObject
{
Q_OBJECT
public:
MemTester(QObject *parent=0);
~MemTester();
static unsigned int measureMemSize(socexplorerplugin* plugin, unsigned int address,unsigned int maxSize=0xFFFFFFFF);
static unsigned int measureMemSize(const QString& plugin, unsigned int address,unsigned int maxSize=0xFFFFFFFF);
public slots:
};
#endif // MEMTESTER_H