Qt for beginners CPP reminder: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Merged)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:Delete]]
 
{{WarningBox|text=Merged into [[Qt for Beginners]]}}
[toc align_right="yes" depth="3"]
[[Category:Qt_for_beginners]]
[[Category:Tutorial]]
[[Category:HowTo]]
 
= 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>
Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &amp;param3)
</code>

Revision as of 20:24, 8 March 2015

Merged into Qt for Beginners