DirectPrint/DirectPrintServer/inc/directprintprotocolinfo.h
changeset 19 2275db202402
parent 11 613a5ff70823
equal deleted inserted replaced
2:acc370d7f2f6 19:2275db202402
       
     1 /*
       
     2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
       
     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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * {Description of the file}
       
    16 *
       
    17 */
       
    18 
       
    19 // Protection against nested includes
       
    20 #ifndef __DIRECTPRINTPROTOCOLINFO_H__
       
    21 #define __DIRECTPRINTPROTOCOLINFO_H__
       
    22 
       
    23 // System includes
       
    24 #include <e32base.h>
       
    25 #include <ecom/ImplementationInformation.h>
       
    26 
       
    27 // Class declaration
       
    28 /**
       
    29  *  Listbox class
       
    30  *  more_complete_description
       
    31  */
       
    32 class CDirectPrintProtocolInfo : public CBase
       
    33 	{
       
    34 public:
       
    35 	/** Constructors */
       
    36 	static CDirectPrintProtocolInfo* NewLC(const CImplementationInformation& aImplInfo);
       
    37 	/** Destructor */
       
    38 	~CDirectPrintProtocolInfo();
       
    39 
       
    40 	TUid ImplementationUid() const;
       
    41 
       
    42 	const TDesC& DisplayName() const;
       
    43 
       
    44 private:
       
    45 	CDirectPrintProtocolInfo();
       
    46 
       
    47 private:
       
    48 	/** The implementation UID */
       
    49 	TUid iImplementationUid;
       
    50 	/** Display name */
       
    51 	HBufC* iDisplayName;
       
    52 	};
       
    53 
       
    54 #endif // __DIRECTPRINTPROTOCOLINFO_H__