Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.84 KB | None | 0 0
  1. #ifndef _PP_DATETO_APPLICATION_
  2. #define _PP_DATETO_APPLICATION_
  3.  
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <ZApplication.h>
  7. #include <qcopchannel_qws.h>
  8. #include <qtimer.h>
  9. #include <qdatetime.h>
  10. #include <qtextstream.h>
  11. #include <qdatastream.h>
  12.  
  13. class PP_DATETO : public ZApplication
  14. {
  15.  Q_OBJECT
  16.  public:
  17.  int m;
  18.  int m1;
  19.  int h;
  20.  int type;
  21.  int mes2;
  22.  int god2;
  23.  int data2;
  24.  QString vuvod;
  25.   PP_DATETO(int argc, char **argv);
  26.   virtual ~PP_DATETO();
  27.     public slots:
  28.         void updateDateto();
  29.         void initDesktopData();
  30.         void loadconfig();
  31.         void sendString(const QString &text, const QCString &MESSAGE);
  32.         void sendImage(const QString &text, const QCString &MESSAGE);
  33.     private:
  34.         QTimer *timerdate;
  35.     protected slots:
  36.         virtual void slotShutdown();
  37.         virtual void slotQuickQuit();
  38.         virtual void slotRaise();
  39. };
  40.  
  41. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement