|
|
#ifndef __auto_mount_h__ #define __auto_mount_h__ #include <qobject.h> #include <qstring.h> class KAutoMount : public QObject { Q_OBJECT public: KAutoMount( bool _readonly, const char *_format, const char *_device, const char * _mountpoint, const QString & _desktopFile, bool _show_filemanager_window = true ); public slots: void slotFinished( int ); void slotError( int, int _id, const char *_text ); protected: QString m_strDevice; bool m_bShowFilemanagerWindow; QString m_desktopFile; }; class KAutoUnmount : public QObject { Q_OBJECT public: KAutoUnmount( const QString & _mountpoint, const QString & _desktopFile ); public slots: void slotFinished( int ); void slotError( int, int _id, const char *_text ); private: QString m_desktopFile; }; #endif
Generated by: root@tantive.terraplex.com on Sun Feb 27 17:39:31 2000, using kdoc 2.0a33. |