Plugins Python API

All SocExplorer plugins expose some common functions and their own functions to the embedded Python terminal.

Common Functions

All this functions are either implemented in the base class socexplorerplugin or in the plugin itself.

Function list:
    virtual void closeMe();
    virtual void activate(bool flag);
    virtual void setInstanceName(const QString& newName);

    virtual bool dumpMemory(unsigned int address,unsigned int count,QString file);
    virtual bool memSet(unsigned int address,int value, unsigned int count);
    virtual bool loadbin(unsigned int address,QString file);
    virtual bool loadfile(abstractBinFile* file);
    virtual bool dumpMemory(unsigned int address,unsigned int count,QString file,const QString& format);