videoutils_plat/videoscheduler_api/inc/ipvideo/RCseSchedulerClient.h
branchRCL_3
changeset 48 13a33d82ad98
parent 0 822a42b6c3f1
equal deleted inserted replaced
47:826cea16efd9 48:13a33d82ad98
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:    Interface for Cse Scheduler engine Client class*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef _RCSESCHEDULERCLIENT_H
       
    22 #define _RCSESCHEDULERCLIENT_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 
       
    27 // CONSTANTS
       
    28 // None.
       
    29 
       
    30 // MACROS
       
    31 // None.
       
    32 
       
    33 // DATA TYPES
       
    34 // None.
       
    35 
       
    36 // FUNCTION PROTOTYPES
       
    37 // None.
       
    38 
       
    39 // FORWARD DECLARATIONS
       
    40 // None.
       
    41 
       
    42 // CLASS DECLARATION
       
    43 
       
    44 /**
       
    45 *  This is the client-side interface through which communication 
       
    46 *  with the server is channeled.
       
    47 *
       
    48 *  @lib CseSchedulerClient.dll
       
    49 */
       
    50 class RCseSchedulerClient : public RSessionBase
       
    51     {
       
    52     public: // Constructors and destructor
       
    53 
       
    54         /**
       
    55         * C++ default constructor.
       
    56         * @return None
       
    57         */
       
    58         RCseSchedulerClient();
       
    59 
       
    60         /**
       
    61         * Destructor.
       
    62         * @return None.
       
    63         */
       
    64         virtual ~RCseSchedulerClient();
       
    65 
       
    66     public: // New functions
       
    67 
       
    68         /**
       
    69         * Connect to the  server.
       
    70         * @return KErrNone if successful, otherwise another of the system-wide 
       
    71         *         error codes.
       
    72         */
       
    73         TInt Connect();
       
    74 
       
    75         /**
       
    76         * Close the session.
       
    77         * @return None
       
    78         */
       
    79         void Close();
       
    80 
       
    81         /**
       
    82         * Version
       
    83         * @return version number
       
    84         */
       
    85         TVersion Version() const;
       
    86 
       
    87     private: // Data
       
    88 
       
    89     };
       
    90 
       
    91 #endif // _RCSESCHEDULERCLIENT_H
       
    92 
       
    93 // End of File
       
    94 
       
    95