How to Write a QT C++ library function ?
-
wrote on 7 Jan 2023, 06:26 last edited byThis post is deleted!
-
wrote on 7 Jan 2023, 17:12 last edited by
Because this is a Qt (not QT, that's usually QuickTime) forum, you are expected to already know C++.
So, you write the function like this:
- Write the function in standard C++ using
C++ RTL functions and classes that you know, or dummies (semantically logical function "protypes") where you don't know an existing function or data type. That's kind of pseudocode - When the logic of the function looks good, find the corresponding Qt functions and classes and use those in the code
- Write the function in standard C++ using
1/2