[beast: 12/31] BSE: remove superflous '= 0' qualifier from aida IDL methods
- From: Tim Janik <timj src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [beast: 12/31] BSE: remove superflous '= 0' qualifier from aida IDL methods
- Date: Mon, 22 Jun 2015 14:39:10 +0000 (UTC)
commit c8a3e9a2d1d3866e1b963157d62905e971ca76d2
Author: Tim Janik <timj gnu org>
Date: Fri Jun 12 15:04:57 2015 +0200
BSE: remove superflous '= 0' qualifier from aida IDL methods
bse/bseapi.idl | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/bse/bseapi.idl b/bse/bseapi.idl
index 05476d9..e59700f 100644
--- a/bse/bseapi.idl
+++ b/bse/bseapi.idl
@@ -8,14 +8,14 @@ namespace Bse {
/// Basic object type for all BSE objects.
interface Object {
- String debug_name () = 0; ///< Object name useful for debugging output.
- int64 proxy_id () = 0; ///< Retrieve the BseObject proxy ID for an Object.
+ String debug_name (); ///< Object name useful for debugging output.
+ int64 proxy_id (); ///< Retrieve the BseObject proxy ID for an Object.
};
/// Object to carry out IDL, API, signal, etc tests.
interface TestObject {
- int32 echo_test (String msg) = 0; ///< Echo custom message to stdout.
- signal void echo_reply (String msg); ///< Signal emitted in response to echo_test().
+ int32 echo_test (String msg); ///< Echo custom message to stdout.
+ signal void echo_reply (String msg); ///< Signal emitted in response to echo_test().
};
enum UserMessageType {
@@ -41,9 +41,9 @@ record UserMessage {
*/
interface Server : Object {
signal void user_message (UserMessage umsg); ///< Notification signal for user messages from BSE.
- TestObject get_test_object () = 0; ///< Retrieve object for API, signal, etc tests.
- Object from_proxy (int64 proxyid) = 0; ///< Find an Object from its associated BseObject
proxy id.
- String get_mp3_version () = 0; ///< Retrieve BSE MP3 handler version.
+ TestObject get_test_object (); ///< Retrieve object for API, signal, etc tests.
+ Object from_proxy (int64 proxyid); ///< Find an Object from its associated BseObject
proxy id.
+ String get_mp3_version (); ///< Retrieve BSE MP3 handler version.
};
} // Bse
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]