Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > os > by-pkgid > 9c481c872fb0ae0cbadccdc2f4a18ab6 > files > 113

libasync-devel-0.17.0-5.fc14.x86_64.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Async: AsyncQtApplication_demo.cpp</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.2-20100208 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">
<h1>AsyncQtApplication_demo.cpp</h1><p>An example of how to use the <a class="el" href="classAsync_1_1QtApplication.html" title="An application class for writing GUI applications in Qt.">Async::QtApplication</a> class</p>
<div class="fragment"><pre class="fragment"><span class="preprocessor">#include &lt;<a class="code" href="AsyncQtApplication_8h.html" title="The core class for writing asyncronous cpp applications.">AsyncQtApplication.h</a>&gt;</span>
<span class="preprocessor">#include &lt;qpushbutton.h&gt;</span>

<span class="keyword">using namespace </span>Async;

<span class="keywordtype">int</span> main(<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> **argv)
{
  <a name="_a0"></a><a class="code" href="classAsync_1_1QtApplication.html" title="An application class for writing GUI applications in Qt.">QtApplication</a> app(argc, argv);
  QPushButton hello(<span class="stringliteral">&quot;Hello, Async::QtApplication&quot;</span>, 0);
  QObject::connect(&amp;hello, SIGNAL(clicked()), &amp;app, SLOT(quit()));
  app.setMainWidget(&amp;hello);
  hello.show();
  app.<a name="a1"></a><a class="code" href="classAsync_1_1QtApplication.html#a9c126053824af95e9cbd0860028b5806" title="Execute the application main loop.">exec</a>();
}
</pre></div> </div>
<hr class="footer"/><address style="text-align: right;"><small>Generated by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2-20100208 </small></address>
</body>
</html>