Qt for beginners CPP reminder

From Qt Wiki
Revision as of 16:47, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

is a signature.

Categories: