smf/inc/common/smfcontacts/smfpost_p.h
changeset 7 be09cf1f39dd
parent 6 c39a6cfd1fb9
child 8 4102c67b6e56
equal deleted inserted replaced
6:c39a6cfd1fb9 7:be09cf1f39dd
     1 /**
       
     2  * Copyright (c) 2010 Sasken Communication Technologies Ltd.
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the "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  * Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
       
    11  *
       
    12  * Contributors:
       
    13  * Manasij Roy, Nalina Hariharan
       
    14  * 
       
    15  * Description:
       
    16  * Private class implemented for implicit sharing of SmfPost class
       
    17  *
       
    18  */
       
    19 
       
    20 #ifndef SMFPOST_P_H_
       
    21 #define SMFPOST_P_H_
       
    22 
       
    23 #include <QSharedData>
       
    24 
       
    25 class SmfPostPrivate : public QSharedData
       
    26 {
       
    27 public:
       
    28 	/**
       
    29 	 * Constructor
       
    30 	 */
       
    31 	SmfPostPrivate( ) ;
       
    32 	
       
    33 	/**
       
    34 	 * Constructor
       
    35 	 */
       
    36 	SmfPostPrivate( QString aTitle, QString aDesc, QImage aImage, QUrl aUrl );
       
    37 
       
    38 	/**
       
    39 	 * Copy Consturctor
       
    40 	 * @param aOther The reference object to be copy constructed
       
    41 	 */
       
    42 	SmfPostPrivate( const SmfPostPrivate &aOther );
       
    43 	
       
    44 	/**
       
    45 	 * Destructor
       
    46 	 */
       
    47 	~SmfPostPrivate( );
       
    48   
       
    49 	QString m_title;	// title
       
    50 	QString m_desc;		// description
       
    51 	QImage m_image;		// image
       
    52 	QUrl m_url;			// url
       
    53 	QString m_postId;	// post's unique Id
       
    54 	
       
    55 };
       
    56 
       
    57 #endif /* SMFPOST_P_H_ */