voicerecorder/NewServiceInc/CNewFileServiceDiscovery.h
branchRCL_3
changeset 21 c6bafb5162d8
parent 0 845549f293a7
equal deleted inserted replaced
20:072a5fa0c63b 21:c6bafb5162d8
       
     1 /*
       
     2 * Copyright (c) 2002-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 "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:  Class implementing the discovery of New file Service servers
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CNEWFILESERVICEDISCOVERY_H
       
    21 #define CNEWFILESERVICEDISCOVERY_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 /**
       
    27 *  Discovery is not supported
       
    28 *
       
    29 *  @lib NewService.dll
       
    30 *  @since Series 60 3.0
       
    31 */
       
    32 class CNewFileServiceDiscovery : public CBase
       
    33     {
       
    34     public:  // Constructors and destructor
       
    35 
       
    36         /**
       
    37         * Two-phased constructor.
       
    38         */
       
    39         static CNewFileServiceDiscovery* NewL();
       
    40 
       
    41         /**
       
    42         * Destructor.
       
    43         */
       
    44         virtual ~CNewFileServiceDiscovery();
       
    45 
       
    46     public: // New functions
       
    47 
       
    48     private:
       
    49 
       
    50         /**
       
    51         * C++ default constructor.
       
    52         */
       
    53         CNewFileServiceDiscovery();
       
    54 
       
    55         /**
       
    56         * By default Symbian 2nd phase constructor is private.
       
    57         */
       
    58         void ConstructL();
       
    59 
       
    60     };
       
    61 
       
    62 #endif      // CNEWFILESERVICEDISCOVERY_H
       
    63 
       
    64 // End of File