c++ - how can i integrate one qt application with another qt project -


i have developed 2 different qt application project , want integrate 1 project, how can link these 2 project so, can call function of each other , use value too. example, in 1 project

    void mainwindow::readdata()  {      qbytearray data = serial->readall();      qdatastream stream(data);       double value;      stream>>value;       console->putdata(data);      qdebug()<<value;   } 

i want use "data" project further calculation , print on project. how can that. give me light on it. i'm absolute beginner in qt c++. thank in advance.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -