Hello,<br><br>I&#39;m in SoK and my mentor asked my to write a chat application. I&#39;m trying to write an app that lists the accounts, it compiles but it doesn&#39;t work i think dbus is not doing his job.<br><br>Here is the code:<br>
<br>main.cpp:<br><br>#include &lt;QApplication&gt;<br>#include &quot;prova.hpp&quot;<br><br>int main(int argc, char *argv[] )<br>{  <br>    QApplication app(argc, argv);<br>    <br>    MyClass MC();<br>    <br>    return app.exec();<br>
}<br><br>prova.hpp:<br><br>#ifndef PROVA_HPP<br>#define PROVA_HPP<br><br>#include &lt;QObject&gt;<br>#include &lt;TelepathyQt4/AccountManager&gt;<br><br>class MyClass : public QObject<br> {<br>     Q_OBJECT<br><br> public:<br>
     MyClass(QObject *parent = 0);<br>     ~MyClass() { }<br><br> private Q_SLOTS:<br>     void onAccountManagerReady(Tp::PendingOperation*);<br><br> private:<br>     Tp::AccountManagerPtr mAM;<br> };<br><br>#endif<br><br>
prova.cpp:<br><br>#ifndef PROVA_CPP<br>#define PROVA_CPP<br><br>#include &lt;QDebug&gt;<br>#include &lt;TelepathyQt4/AccountManager&gt;<br>#include &lt;TelepathyQt4/PendingOperation&gt;<br>#include &lt;TelepathyQt4/PendingReady&gt;<br>
#include &quot;prova.hpp&quot;<br><br><br> MyClass::MyClass(QObject *parent)<br>     : QObject(parent), mAM(Tp::AccountManager::create())<br> {<br>     <br>     connect(mAM-&gt;becomeReady(),<br>             SIGNAL(finished(Tp::PendingOperation*)),<br>
             SLOT(onAccountManagerReady(Tp::PendingOperation*)));<br> }<br><br> void MyClass::onAccountManagerReady(Tp::PendingOperation *op)<br> {<br>     if (op-&gt;isError()) {<br>         qWarning() &lt;&lt; &quot;Account manager cannot become ready:&quot; &lt;&lt;<br>
             op-&gt;errorName() &lt;&lt; &quot;-&quot; &lt;&lt; op-&gt;errorMessage();<br>         return;<br>     }<br><br>     // AccountManager is now ready<br>     qDebug() &lt;&lt; &quot;All accounts:&quot;;<br>     <br>
     <br>     foreach (const Tp::AccountPtr &amp;acc, mAM-&gt;allAccounts()) {<br>         qDebug() &lt;&lt; &quot; path:&quot; &lt;&lt; acc-&gt;objectPath();<br>     }<br> }<br> <br>#endif<br><br>Maybe it&#39;s problem in telepathy&#39;s instalation. I&#39;m in archlinux 64bit.<br>
<br>Thank you.<br><br>