summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/session.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/session.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/session.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/session.h b/noncore/apps/opie-console/session.h
index 3978e1b..44b5fc8 100644
--- a/noncore/apps/opie-console/session.h
+++ b/noncore/apps/opie-console/session.h
@@ -18,3 +18,4 @@ public:
18 */ 18 */
19 Session( QWidget* widget, IOLayer* ); 19 Session();
20 Session( const QString&, QWidget* widget, IOLayer* );
20 ~Session(); 21 ~Session();
@@ -22,2 +23,7 @@ public:
22 /** 23 /**
24 * return the name of the session
25 */
26 QString name()const;
27
28 /**
23 * return the widget 29 * return the widget
@@ -32,6 +38,9 @@ public:
32 void setIOLayer( IOLayer* ); 38 void setIOLayer( IOLayer* );
39 void setName( const QString& );
33 40
34private: 41private:
42 QString m_name;
35 QWidget* m_widget; 43 QWidget* m_widget;
36 IOLayer* m_layer; 44 IOLayer* m_layer;
45
37}; 46};