usbmgmt/usbmgrtest/ObexClassController/ObexUsbClassController/ClassControllerClientSession/inc/classControllerClientSession.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2009 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 "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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CLASSCONTROLLERCLIENTSESSION_H |
|
20 #define CLASSCONTROLLERCLIENTSESSION_H |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 /** |
|
25 * RClassControllerClient is a RSessionBase derived class. |
|
26 * It serves as the Client side of a Client and Server |
|
27 * configuration. Implementation of this class occurs within |
|
28 * the Obex Class Controller, it's member functions |
|
29 * cause messages to be sent to the server side code implemented in an |
|
30 * executable process that start an Obex server. |
|
31 * |
|
32 */ |
|
33 |
|
34 class RClassControllerClient : public RSessionBase |
|
35 { |
|
36 public: |
|
37 IMPORT_C TInt Connect(); |
|
38 IMPORT_C TInt StartService(); |
|
39 IMPORT_C TInt StopService(); |
|
40 }; |
|
41 #endif // CLASSCONTROLLERCLIENTSESSION_H |
|
42 |