mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
6001db3188
Stegosaurus 1.0 is a tool to perform steganography on 24-bit BMP files. Use this to hide and recover any type of file to and from a selected BMP image, without altering the original size of the image git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1291 b45a01b8-16f6-495d-af2f-9b41ad6348cc
28 lines
489 B
C++
28 lines
489 B
C++
#ifndef _STEGOSAURUS_PLUGIN_H_
|
|
#define _STEGOSAURUS_PLUGIN_H_
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
#include <QWidget>
|
|
|
|
#include <PluginInterface.h>
|
|
|
|
#include <QDebug>
|
|
|
|
class StegoSaurusPlugin: public QObject, public PluginInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
public slots:
|
|
|
|
virtual QString pluginDescription() const ;
|
|
virtual QString pluginName() const ;
|
|
|
|
virtual QWidget* pluginWidget(QWidget * parent = 0) ;
|
|
|
|
};
|
|
|
|
#endif
|