summaryrefslogtreecommitdiff
path: root/library/storage.h
Unidiff
Diffstat (limited to 'library/storage.h') (more/less context) (show whitespace changes)
-rw-r--r--library/storage.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/storage.h b/library/storage.h
index 35a1109..4c29288 100644
--- a/library/storage.h
+++ b/library/storage.h
@@ -28,28 +28,24 @@ class QCopChannel;
28 28
29class StorageInfo : public QObject 29class StorageInfo : public QObject
30{ 30{
31 Q_OBJECT 31 Q_OBJECT
32public: 32public:
33 StorageInfo( QObject *parent=0 ); 33 StorageInfo( QObject *parent=0 );
34 34
35 const QList<FileSystem> &fileSystems() const { return mFileSystems; } 35 const QList<FileSystem> &fileSystems() const { return mFileSystems; }
36 const FileSystem *fileSystemOf( const QString &filename ); 36 const FileSystem *fileSystemOf( const QString &filename );
37 static bool hasCf(); 37 static bool hasCf();
38 static bool hasSd(); 38 static bool hasSd();
39 static bool hasMmc(); 39 static bool hasMmc();
40
41 QString getCfPath();
42 QString getSdPath();
43 QString getMmcPath();
44signals: 40signals:
45 void disksChanged(); 41 void disksChanged();
46 42
47public slots: 43public slots:
48 void update(); 44 void update();
49 45
50private slots: 46private slots:
51 void cardMessage( const QCString& msg, const QByteArray& data ); 47 void cardMessage( const QCString& msg, const QByteArray& data );
52private: 48private:
53 QList<FileSystem> mFileSystems; 49 QList<FileSystem> mFileSystems;
54 QCopChannel *channel; 50 QCopChannel *channel;
55}; 51};