Qt for beginners CPP reminder: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
=Qt for beginners — C++ reminder=
[toc align_right=&quot;yes&amp;quot; depth=&quot;3&amp;quot;]<br />[[Category:Qt_for_beginners]]<br />[[Category:Tutorial]]<br />[[Category:HowTo]]


==Glossary==
= Qt for beginners — C++ reminder =


===Signature===
== Glossary ==


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.
=== Signature ===


is a 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.


===Categories:===
<code><br />Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &amp;param3)<br /></code>
 
* [[:Category:HowTo|HowTo]]
* [[:Category:Qt for beginners|Qt_for_beginners]]
* [[:Category:Tutorial|Tutorial]]

Revision as of 08:57, 24 February 2015

[toc align_right="yes&quot; depth="3&quot;]


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.

<br />Type MyObject::myFunction(Type1 param1, Type2 *param2, const Type3 &amp;param3)<br />