summaryrefslogtreecommitdiff
path: root/libopie/ohwinfo.h
authorsandman <sandman>2002-06-18 12:44:05 (UTC)
committer sandman <sandman>2002-06-18 12:44:05 (UTC)
commite21322ab34a8df36344eece685e604abe4f83fc6 (patch) (side-by-side diff)
tree199bf3f1b70b7d364d5ad836e01789ab6ce87d70 /libopie/ohwinfo.h
parent714133d7f0e2a0dafe55b280f93915765fc67fe3 (diff)
downloadopie-e21322ab34a8df36344eece685e604abe4f83fc6.zip
opie-e21322ab34a8df36344eece685e604abe4f83fc6.tar.gz
opie-e21322ab34a8df36344eece685e604abe4f83fc6.tar.bz2
Reimplemented OHwInfo as ODevice with enhanced capabilities
ODevice should replace custom-*.h in the future (iPAQ is finished)
Diffstat (limited to 'libopie/ohwinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ohwinfo.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/libopie/ohwinfo.h b/libopie/ohwinfo.h
deleted file mode 100644
index e2106f3..0000000
--- a/libopie/ohwinfo.h
+++ b/dev/null
@@ -1,48 +0,0 @@
-#ifndef _LIBOPIE_OHWINFO_H_
-#define _LIBOPIE_OHWINFO_H_
-
-#include <qstring.h>
-
-enum OHwModel {
- OMODEL_Unknown,
-
- OMODEL_iPAQ_H31xx,
- OMODEL_iPAQ_H36xx,
- OMODEL_iPAQ_H37xx,
- OMODEL_iPAQ_H38xx,
-
- OMODEL_Zaurus_SL5000
-};
-
-enum OHwVendor {
- OVENDOR_Unknown,
-
- OVENDOR_HP,
- OVENDOR_Sharp,
-};
-
-class OHwInfoData;
-
-
-class OHwInfo
-{
-public:
- static OHwInfo *inst ( );
-
- QString modelString ( );
- OHwModel model ( );
-
- QString vendorString ( );
- OHwVendor vendor ( );
-
- virtual ~OHwInfo ( );
-
-private:
- OHwInfo ( );
- OHwInfo ( const OHwInfo & );
-
- OHwInfoData *m_data;
-};
-
-#endif
-