Last change
on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago |
Initially imported qt-all-opensource-src-4.5.1 from Trolltech.
|
File size:
406 bytes
|
Line | |
---|
1 | //! [0]
|
---|
2 | QDBusInterface remoteApp( "com.example.Calculator", "/Calculator/Operations",
|
---|
3 | "org.mathematics.RPNCalculator" );
|
---|
4 | remoteApp.call( "PushOperand", 2 );
|
---|
5 | remoteApp.call( "PushOperand", 2 );
|
---|
6 | remoteApp.call( "ExecuteOperation", "+" );
|
---|
7 | QDBusReply<int> reply = remoteApp.call( "PopOperand" );
|
---|
8 |
|
---|
9 | if ( reply.isValid() )
|
---|
10 | printf( "%d", reply.value() ); // prints 4
|
---|
11 | //! [0]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.