Qt for beginners CPP reminder: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[toc align_right= | [toc align_right="yes" depth="3"] | ||
[[Category:Qt_for_beginners]] | |||
[[Category:Tutorial]] | |||
[[Category:HowTo]] | |||
= Qt for beginners — C++ reminder = | = Qt for beginners — C++ reminder = | ||
Line 9: | Line 12: | ||
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. | 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> | <code> | ||
Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &param3) | |||
</code> |
Revision as of 09:27, 25 February 2015
[toc align_right="yes" depth="3"]
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.
Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &param3)