javaextensions/wma/mms/pushplugin/inc/mmsserverconnection.h
changeset 21 2a9601315dfc
child 78 71ad690e91f5
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 /*
       
     2 * Copyright (c) 2008 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 #ifndef MMSSERVERCONNECTION_H
       
    19 #define MMSSERVERCONNECTION_H
       
    20 
       
    21 #include "serverconnection.h"
       
    22 
       
    23 using namespace java::push;
       
    24 
       
    25 namespace java
       
    26 {
       
    27 namespace wma
       
    28 {
       
    29 /**
       
    30  * The Os agnostic interface through which MMSServerConnectionImpl is used
       
    31  *
       
    32  */
       
    33 class MmsServerConnection: public ServerConnection
       
    34 {
       
    35 
       
    36 public:
       
    37 
       
    38     static ServerConnection* getServerConnection(const std::wstring& aUri,
       
    39             const std::wstring& aFilter);
       
    40 
       
    41     virtual ~MmsServerConnection()
       
    42     {
       
    43 
       
    44     }
       
    45 
       
    46     virtual void setOpen() = 0;
       
    47 };
       
    48 
       
    49 }//end of namespace wma
       
    50 }//end of namespace java
       
    51 #endif // MMSSERVERCONNECTION_H
       
    52