Sophie

Sophie

distrib > Mageia > 6 > armv5tl > media > core-updates > by-pkgid > 768f7d9f703884aa2562bf0a651086df > files > 1003

qtbase5-doc-5.9.4-1.1.mga6.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>car_interface.h Example File | Qt D-Bus</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.9</td><td ><a href="qtdbus-index.html">Qt D-Bus</a></td><td ><a href="qtdbus-remotecontrolledcar-example.html">D-Bus Remote Controlled Car Example</a></td><td >car_interface.h Example File</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.4 Reference Documentation</td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">car_interface.h Example File</h1>
<span class="subtitle">remotecontrolledcar/controller/car_interface.h</span>
<!-- $$$remotecontrolledcar/controller/car_interface.h-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">

  <span class="comment">/*
   * This file was generated by qdbusxml2cpp version 0.8
   * Command line was: qdbusxml2cpp -p car_interface.h: car.xml
   *
   * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.
   *
   * This is an auto-generated file.
   * Do not edit! All changes made to it will be lost.
   */</span>

  <span class="preprocessor">#ifndef CAR_INTERFACE_H</span>
  <span class="preprocessor">#define CAR_INTERFACE_H</span>

  <span class="preprocessor">#include &lt;QtCore/QObject&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QByteArray&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QList&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QMap&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QString&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QStringList&gt;</span>
  <span class="preprocessor">#include &lt;QtCore/QVariant&gt;</span>
  <span class="preprocessor">#include &lt;QtDBus/QtDBus&gt;</span>

  <span class="comment">/*
   * Proxy class for interface org.example.Examples.CarInterface
   */</span>
  <span class="keyword">class</span> OrgExampleExamplesCarInterfaceInterface: <span class="keyword">public</span> <span class="type"><a href="qdbusabstractinterface.html">QDBusAbstractInterface</a></span>
  {
      Q_OBJECT
  <span class="keyword">public</span>:
      <span class="keyword">static</span> <span class="keyword">inline</span> <span class="keyword">const</span> <span class="type">char</span> <span class="operator">*</span>staticInterfaceName()
      { <span class="keyword">return</span> <span class="string">&quot;org.example.Examples.CarInterface&quot;</span>; }

  <span class="keyword">public</span>:
      OrgExampleExamplesCarInterfaceInterface(<span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>service<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>path<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="qdbusconnection.html">QDBusConnection</a></span> <span class="operator">&amp;</span>connection<span class="operator">,</span> <span class="type"><a href="../qtcore/qobject.html">QObject</a></span> <span class="operator">*</span>parent <span class="operator">=</span> nullptr);

      <span class="operator">~</span>OrgExampleExamplesCarInterfaceInterface();

  <span class="keyword">public</span> Q_SLOTS: <span class="comment">// METHODS</span>
      <span class="keyword">inline</span> <span class="type"><a href="qdbuspendingreply.html">QDBusPendingReply</a></span><span class="operator">&lt;</span><span class="operator">&gt;</span> accelerate()
      {
          <span class="type"><a href="../qtcore/qlist.html">QList</a></span><span class="operator">&lt;</span><span class="type"><a href="../qtcore/qvariant.html">QVariant</a></span><span class="operator">&gt;</span> argumentList;
          <span class="keyword">return</span> asyncCallWithArgumentList(<span class="type"><a href="../qtcore/qstring.html#QStringLiteral">QStringLiteral</a></span>(<span class="string">&quot;accelerate&quot;</span>)<span class="operator">,</span> argumentList);
      }

      <span class="keyword">inline</span> <span class="type"><a href="qdbuspendingreply.html">QDBusPendingReply</a></span><span class="operator">&lt;</span><span class="operator">&gt;</span> decelerate()
      {
          <span class="type"><a href="../qtcore/qlist.html">QList</a></span><span class="operator">&lt;</span><span class="type"><a href="../qtcore/qvariant.html">QVariant</a></span><span class="operator">&gt;</span> argumentList;
          <span class="keyword">return</span> asyncCallWithArgumentList(<span class="type"><a href="../qtcore/qstring.html#QStringLiteral">QStringLiteral</a></span>(<span class="string">&quot;decelerate&quot;</span>)<span class="operator">,</span> argumentList);
      }

      <span class="keyword">inline</span> <span class="type"><a href="qdbuspendingreply.html">QDBusPendingReply</a></span><span class="operator">&lt;</span><span class="operator">&gt;</span> turnLeft()
      {
          <span class="type"><a href="../qtcore/qlist.html">QList</a></span><span class="operator">&lt;</span><span class="type"><a href="../qtcore/qvariant.html">QVariant</a></span><span class="operator">&gt;</span> argumentList;
          <span class="keyword">return</span> asyncCallWithArgumentList(<span class="type"><a href="../qtcore/qstring.html#QStringLiteral">QStringLiteral</a></span>(<span class="string">&quot;turnLeft&quot;</span>)<span class="operator">,</span> argumentList);
      }

      <span class="keyword">inline</span> <span class="type"><a href="qdbuspendingreply.html">QDBusPendingReply</a></span><span class="operator">&lt;</span><span class="operator">&gt;</span> turnRight()
      {
          <span class="type"><a href="../qtcore/qlist.html">QList</a></span><span class="operator">&lt;</span><span class="type"><a href="../qtcore/qvariant.html">QVariant</a></span><span class="operator">&gt;</span> argumentList;
          <span class="keyword">return</span> asyncCallWithArgumentList(<span class="type"><a href="../qtcore/qstring.html#QStringLiteral">QStringLiteral</a></span>(<span class="string">&quot;turnRight&quot;</span>)<span class="operator">,</span> argumentList);
      }

  Q_SIGNALS: <span class="comment">// SIGNALS</span>
      <span class="type">void</span> crashed();
  };

  <span class="keyword">namespace</span> org {
    <span class="keyword">namespace</span> example {
      <span class="keyword">namespace</span> Examples {
        <span class="keyword">typedef</span> <span class="operator">::</span>OrgExampleExamplesCarInterfaceInterface CarInterface;
      }
    }
  }
  <span class="preprocessor">#endif</span>

</pre>
</div>
<!-- @@@remotecontrolledcar/controller/car_interface.h -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2017 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>