Qt for beginners CPP reminder: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) (Add "cleanup" tag) |
||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[toc align_right="yes" depth="3"] | [toc align_right="yes" depth="3"] | ||
[[Category:Qt_for_beginners]] | [[Category:Qt_for_beginners]] |
Revision as of 16:49, 3 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
[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)