~ubuntu-branches/ubuntu/natty/sip4-qt3/natty

« back to all changes in this revision

Viewing changes to doc/html/specification_files.html

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-07-21 10:18:00 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100721101800-9lk0k2t6hx6pq0dh
Tags: 4.10.5-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  <head>
6
6
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
7
    
8
 
    <title>SIP Specification Files &mdash; SIP 4.10.2 Reference Guide</title>
 
8
    <title>SIP Specification Files &mdash; SIP 4.10.5 Reference Guide</title>
9
9
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
10
10
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
11
11
    <script type="text/javascript">
12
12
      var DOCUMENTATION_OPTIONS = {
13
 
        URL_ROOT:    '',
14
 
        VERSION:     '4.10.2',
 
13
        URL_ROOT:    '#',
 
14
        VERSION:     '4.10.5',
15
15
        COLLAPSE_MODINDEX: false,
16
16
        FILE_SUFFIX: '.html',
17
17
        HAS_SOURCE:  true
19
19
    </script>
20
20
    <script type="text/javascript" src="_static/jquery.js"></script>
21
21
    <script type="text/javascript" src="_static/doctools.js"></script>
22
 
    <link rel="top" title="SIP 4.10.2 Reference Guide" href="index.html" />
 
22
    <link rel="top" title="SIP 4.10.5 Reference Guide" href="index.html" />
23
23
    <link rel="next" title="Directives" href="directives.html" />
24
24
    <link rel="prev" title="The SIP Command Line" href="command_line.html" /> 
25
25
  </head>
39
39
        <li class="right" >
40
40
          <a href="command_line.html" title="The SIP Command Line"
41
41
             accesskey="P">previous</a> |</li>
42
 
        <li><a href="index.html">SIP 4.10.2 Reference Guide</a> &raquo;</li> 
 
42
        <li><a href="index.html">SIP 4.10.5 Reference Guide</a> &raquo;</li> 
43
43
      </ul>
44
44
    </div>  
45
45
 
171
171
        <em>virtual-operator</em> |
172
172
        <em>class-variable</em> |
173
173
        <strong>public:</strong> |
 
174
        <strong>public Q_SLOTS:</strong> |
174
175
        <strong>public slots:</strong> |
175
176
        <strong>protected:</strong> |
 
177
        <strong>protected Q_SLOTS:</strong> |
176
178
        <strong>protected slots:</strong> |
177
179
        <strong>private:</strong> |
 
180
        <strong>private Q_SLOTS:</strong> |
178
181
        <strong>private slots:</strong> |
 
182
        <strong>Q_SIGNALS:</strong> |
179
183
        <strong>signals:</strong>]
180
184
 
181
185
<em>constructor</em> ::= [<strong>explicit</strong>] <em>name</em> <strong>(</strong> [<em>argument-list</em>] <strong>)</strong>
189
193
        [<em>function-annotations</em>] <strong>;</strong> [<a class="reference external" href="directives.html#directive-%MethodCode"><tt class="xref docutils literal"><span class="pre">%MethodCode</span></tt></a>]
190
194
        [<a class="reference external" href="directives.html#directive-%VirtualCatcherCode"><tt class="xref docutils literal"><span class="pre">%VirtualCatcherCode</span></tt></a>]
191
195
 
192
 
<em>method</em> ::= <em>type</em> <em>name</em> <strong>(</strong> [<em>argument-list</em>] <strong>)</strong> [<strong>const</strong>]
193
 
        [<em>exceptions</em>] [<strong>= 0</strong>] [<em>function-annotations</em>] [<em>c++-signature</em>]
194
 
        <strong>;</strong> [<a class="reference external" href="directives.html#directive-%Docstring"><tt class="xref docutils literal"><span class="pre">%Docstring</span></tt></a>] [<a class="reference external" href="directives.html#directive-%MethodCode"><tt class="xref docutils literal"><span class="pre">%MethodCode</span></tt></a>]
 
196
<em>method</em> ::= [<strong>Q_SIGNAL</strong>] [<strong>Q_SLOT</strong>] <em>type</em> <em>name</em> <strong>(</strong>
 
197
        [<em>argument-list</em>] <strong>)</strong> [<strong>const</strong>] [<em>exceptions</em>] [<strong>= 0</strong>]
 
198
        [<em>function-annotations</em>] [<em>c++-signature</em>] <strong>;</strong>
 
199
        [<a class="reference external" href="directives.html#directive-%Docstring"><tt class="xref docutils literal"><span class="pre">%Docstring</span></tt></a>] [<a class="reference external" href="directives.html#directive-%MethodCode"><tt class="xref docutils literal"><span class="pre">%MethodCode</span></tt></a>]
195
200
 
196
201
<em>c++-signature</em> ::= <strong>[</strong> <em>type</em> <strong>(</strong> [<em>argument-list</em>] <strong>)]</strong>
197
202
 
198
203
<em>static-method</em> ::= <strong>static</strong> <em>function</em>
199
204
 
200
 
<em>virtual-method</em> ::= <strong>virtual</strong> <em>type</em> <em>name</em> <strong>(</strong> [<em>argument-list</em>] <strong>)</strong>
201
 
        [<strong>const</strong>] [<em>exceptions</em>] [<strong>= 0</strong>] [<em>function-annotations</em>]
202
 
        [<em>c++-signature</em>] <strong>;</strong> [<a class="reference external" href="directives.html#directive-%MethodCode"><tt class="xref docutils literal"><span class="pre">%MethodCode</span></tt></a>]
203
 
        [<a class="reference external" href="directives.html#directive-%VirtualCatcherCode"><tt class="xref docutils literal"><span class="pre">%VirtualCatcherCode</span></tt></a>]
 
205
<em>virtual-method</em> ::= [<strong>Q_SIGNAL</strong>] [<strong>Q_SLOT</strong>] <strong>virtual</strong> <em>type</em> <em>name</em>
 
206
        <strong>(</strong> [<em>argument-list</em>] <strong>)</strong> [<strong>const</strong>] [<em>exceptions</em>] [<strong>= 0</strong>]
 
207
        [<em>function-annotations</em>] [<em>c++-signature</em>] <strong>;</strong>
 
208
        [<a class="reference external" href="directives.html#directive-%MethodCode"><tt class="xref docutils literal"><span class="pre">%MethodCode</span></tt></a>] [<a class="reference external" href="directives.html#directive-%VirtualCatcherCode"><tt class="xref docutils literal"><span class="pre">%VirtualCatcherCode</span></tt></a>]
204
209
 
205
210
<em>special-method</em> ::= <em>type</em> <em>special-method-name</em>
206
211
        <strong>(</strong> [<em>argument-list</em>] <strong>)</strong> [<em>function-annotations</em>] <strong>;</strong>
549
554
        <div class="sphinxsidebarwrapper">
550
555
            <h3><a href="index.html">Table Of Contents</a></h3>
551
556
            <ul>
552
 
<li><a class="reference external" href="">SIP Specification Files</a><ul>
 
557
<li><a class="reference external" href="#">SIP Specification Files</a><ul>
553
558
<li><a class="reference external" href="#syntax-definition">Syntax Definition</a></li>
554
559
<li><a class="reference external" href="#variable-numbers-of-arguments">Variable Numbers of Arguments</a></li>
555
560
<li><a class="reference external" href="#additional-sip-types">Additional SIP Types</a></li>
596
601
        <li class="right" >
597
602
          <a href="command_line.html" title="The SIP Command Line"
598
603
             >previous</a> |</li>
599
 
        <li><a href="index.html">SIP 4.10.2 Reference Guide</a> &raquo;</li> 
 
604
        <li><a href="index.html">SIP 4.10.5 Reference Guide</a> &raquo;</li> 
600
605
      </ul>
601
606
    </div>
602
607
    <div class="footer">
603
608
      &copy; Copyright 2010 Riverbank Computing Limited.
604
 
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2.
 
609
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.4.
605
610
    </div>
606
611
  </body>
607
612
</html>
 
 
b'\\ No newline at end of file'