Advertisement
Guest User

Untitled

a guest
Jun 19th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #ifndef connect_kwallet_H
  2. #define connect_kwallet_H
  3.  
  4. #include <KWallet/Wallet>
  5. #include <QtCore/QObject>
  6.  
  7. using KWallet::Wallet;
  8.  
  9. class ConnectKwallet : public QObject
  10. {
  11. Q_OBJECT
  12. public:
  13.     ConnectKwallet();
  14.     virtual ~ConnectKwallet();
  15. private:
  16.     Wallet *m_wallet;
  17. private slots:
  18.     void output();
  19. };
  20.  
  21. #endif // connect_kwallet_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement