Ярлыки

среда, 16 марта 2011 г.

QThread

#include 
#include 
#include 

class MyThread : public QThread {
   public:
   void run(){ std::cout << "HELLO !!!!" << std::endl; }
};

class MyBase1 {
   MyThread mt;

public:
   MyBase1() {
       mt.start();
   }
};

int main(int argc, char *argv[]) {
    QCoreApplication a(argc, argv);

    MyBase1 mybase;

    return a.exec();
}
 
link 
link 

вторник, 15 марта 2011 г.

QThread

http://cppe.ru/index.php/C%2B%2B/Qt/QThread

http://stackoverflow.com/questions/1780105/qtimer-select-use-need-to-get-auction-time-working

QTimer

http://www.rsdn.ru/forum/unix/2856002.all.aspx

http://www.prog.org.ru/topic_2224_15.html
http://forum.vingrad.ru/forum/topic-200719.html

Qt Взаимодействие с веб-сервером

http://qt.e-werest.org/blog/tutorial/2904.html

Куда класть логи своего приложения в Linux?

http://habrahabr.ru/qa/5717/
http://aleksmisyuk.wordpress.com/2010/01/14/simple-qt-logger/