summaryrefslogtreecommitdiff
path: root/examples/networksettings/examplemodule.h
Side-by-side diff
Diffstat (limited to 'examples/networksettings/examplemodule.h') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/networksettings/examplemodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/networksettings/examplemodule.h b/examples/networksettings/examplemodule.h
index 211714b..317b0a9 100644
--- a/examples/networksettings/examplemodule.h
+++ b/examples/networksettings/examplemodule.h
@@ -1,28 +1,28 @@
#ifndef OPIE_EXAMPLE_NETWORK_MODULE_H
#define OPIE_EXAMPLE_NETWORK_MODULE_H
-#include <module.h>
+#include <interfaces/module.h>
class VirtualModule : Module {
signals:
void updateInterface(Interface* i );
public:
VirtualModule();
~VirtualModule();
const QString type() {return QString::fromLatin1("vpn" );}
void setProfile( const QString& ) {}
bool isOwner( Interface* );
QWidget *configure( Interface* );
QWidget *information( Interface* );
QList<Interface> getInterfaces();
void possibleNewInterfaces( QMap<QString, QString>& );
Interface *addNewInterface( const QString& );
bool remove( Interface* iface );
QString getPixmapName( Interface* ) {return QString::fromLatin1("Tux"); }
void receive( const QCString& msg, const QByteArray& ar ) { Q_CONST_UNUSED(msg) Q_CONST_UNUSED(ar) } // don't listen
private:
QList<Interface> m_interfaces;
};