-rw-r--r-- | examples/networksettings/examplemodule.h | 2 |
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,20 +1,20 @@ | |||
1 | #ifndef OPIE_EXAMPLE_NETWORK_MODULE_H | 1 | #ifndef OPIE_EXAMPLE_NETWORK_MODULE_H |
2 | #define OPIE_EXAMPLE_NETWORK_MODULE_H | 2 | #define OPIE_EXAMPLE_NETWORK_MODULE_H |
3 | 3 | ||
4 | #include <module.h> | 4 | #include <interfaces/module.h> |
5 | 5 | ||
6 | class VirtualModule : Module { | 6 | class VirtualModule : Module { |
7 | 7 | ||
8 | signals: | 8 | signals: |
9 | void updateInterface(Interface* i ); | 9 | void updateInterface(Interface* i ); |
10 | 10 | ||
11 | public: | 11 | public: |
12 | VirtualModule(); | 12 | VirtualModule(); |
13 | ~VirtualModule(); | 13 | ~VirtualModule(); |
14 | 14 | ||
15 | const QString type() {return QString::fromLatin1("vpn" );} | 15 | const QString type() {return QString::fromLatin1("vpn" );} |
16 | void setProfile( const QString& ) {} | 16 | void setProfile( const QString& ) {} |
17 | bool isOwner( Interface* ); | 17 | bool isOwner( Interface* ); |
18 | QWidget *configure( Interface* ); | 18 | QWidget *configure( Interface* ); |
19 | QWidget *information( Interface* ); | 19 | QWidget *information( Interface* ); |
20 | QList<Interface> getInterfaces(); | 20 | QList<Interface> getInterfaces(); |