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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -