X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fio%2Finc%2FFIo_IpcClient.h;h=1cbd3949e30befc0f43f6559c30fe3008c5ddae0;hb=b0b6088da5447713f9bdc1113f3b7d5c380d8071;hp=4503a47ced36f1a9223ad280c22589af657ebd7e;hpb=6b44196c40a66b895028f7ba2e9b5e41bc715ab2;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/src/io/inc/FIo_IpcClient.h b/src/io/inc/FIo_IpcClient.h index 4503a47..1cbd394 100644 --- a/src/io/inc/FIo_IpcClient.h +++ b/src/io/inc/FIo_IpcClient.h @@ -1,5 +1,4 @@ // -// Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); @@ -51,30 +50,19 @@ class _IIpcClientEventListener; /** * @class _IpcClient * @brief This class provides methods for sending a message to an IPC server. - * @since 2.1 * */ class _OSP_EXPORT_ _IpcClient : Tizen::Base::Object { public: - /** - * This is the default constructor for this class. - * @since 2.1 - */ _IpcClient(void); - /** - * This is the destructor for this class. - * @since 2.1 - */ virtual ~_IpcClient(void); /** * Constructs the instance of this class. * - * @since 2.1 - * * @return An error code * @param[in] serverName The name of the server * @param[in] pListener Set if the client want to handle a message from the IPC server. @@ -87,12 +75,17 @@ public: result Construct(const Tizen::Base::String& serverName, const _IIpcClientEventListener* pListener = null); /** + * Returns the name of the IPC server. + * + * @return The name of the IPC server. + */ + Tizen::Base::String GetName(void) const; + + /** * Sends a request message to an IPC server. * - * @since 2.1 * @code * - * * int * CalculatorProxy::Add(int a , int b) * {