|
|
| (3 intermediate revisions by 3 users not shown) |
| Line 1: |
Line 1: |
| [toc align_right="yes&quot; depth="3&quot;]<br />[[Category:Qt_for_beginners]]<br />[[Category:Tutorial]]<br />[[Category:HowTo]] | | #REDIRECT [[Qt for Beginners]] |
| | |
| = Qt for beginners — C++ reminder =
| |
| | |
| == Glossary ==
| |
| | |
| === Signature ===
| |
| | |
| The '''signature''' of a method or function is simply it's prototype. It completely describes a method or function. It contains the returned type, the name of the method / function (including the class name) and the parameters, including types.
| |
| | |
| <code><br />Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &param3)<br /></code>
| |