summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/io_layer.h
authorwazlaf <wazlaf>2002-09-28 14:58:25 (UTC)
committer wazlaf <wazlaf>2002-09-28 14:58:25 (UTC)
commitea1975bdf411de3e08e7b84d2480a522596fe143 (patch) (side-by-side diff)
tree3cd90b3440fa190e9853f66cbd1e9dfaeb6f330c /noncore/apps/opie-console/io_layer.h
parent93f90487bf9d2b8937a4933aef2ee472b5cdc89c (diff)
downloadopie-ea1975bdf411de3e08e7b84d2480a522596fe143.zip
opie-ea1975bdf411de3e08e7b84d2480a522596fe143.tar.gz
opie-ea1975bdf411de3e08e7b84d2480a522596fe143.tar.bz2
Some changes in io_layer.h; Untested Serial IOLayer implementation added
Diffstat (limited to 'noncore/apps/opie-console/io_layer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/io_layer.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/noncore/apps/opie-console/io_layer.h b/noncore/apps/opie-console/io_layer.h
index c8f41d7..537c851 100644
--- a/noncore/apps/opie-console/io_layer.h
+++ b/noncore/apps/opie-console/io_layer.h
@@ -2,7 +2,7 @@
#define OPIE_IO_LAYER_H
#include <qobject.h>
-
+#include <qpe/config.h>
/**
* This is the base class for IO Layers
@@ -29,7 +29,8 @@ public:
/**
* create an IOLayer instance from a config file
- * can be used by session managemnt/profiles
+ * the currently set group stores the profile/session
+ * information
*/
IOLayer( const Config& );
@@ -37,6 +38,16 @@ public:
* destructor
*/
virtual ~IOLayer();
+
+ /**
+ * a small internal identifier
+ */
+ virtual QString identifier() const = 0;
+
+ /**
+ * a short name
+ */
+ virtual QString name() const = 0;
signals:
/**
* received input as QCString
@@ -70,17 +81,6 @@ public slots:
* closes and reloads the settings
*/
virtual void reload( const Config& ) = 0;
-
- /**
- * a small internal identifier
- */
- virtual QString identifier()const = 0;
-
- /**
- * a short name
- */
- virtual QString name()const = 0;
-
};
#endif