smf/inc/common/smfevent/smfevent_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 SmfEvent class
       
    17  *
       
    18  */
       
    19 
       
    20 #ifndef SMFEVENT_P_H_
       
    21 #define SMFEVENT_P_H_
       
    22 
       
    23 
       
    24 #include <smfplace.h>
       
    25 #include <smfartists.h>
       
    26 #include <QStringList>
       
    27 #include <QSharedData>
       
    28 
       
    29 class SmfEventPrivate : public QSharedData
       
    30 {
       
    31 public:
       
    32 	/**
       
    33 	 * Constructor
       
    34 	 */
       
    35 	SmfEventPrivate( );
       
    36 	
       
    37 	/**
       
    38 	 * Copy Consturctor
       
    39 	 * @param aOther The reference object to be copy constructed
       
    40 	 */
       
    41 	SmfEventPrivate( const SmfEventPrivate &aOther );
       
    42 	/**
       
    43 	 * Destructor
       
    44 	 */
       
    45 	~SmfEventPrivate( );
       
    46   
       
    47 	QString		m_name;			// event name
       
    48 	QDateTime 	m_dateTime;		// event date and time
       
    49 	QTime		m_duration;		// event duration
       
    50 	SmfArtists m_artists;		// event artist names
       
    51 	SmfPlace 	m_venue;		// venue of the event
       
    52 	QUrl 		m_url;			// ticket url
       
    53 	QString 	m_eventId;	// event Id
       
    54 	
       
    55 };
       
    56 
       
    57 #endif /* SMFEVENT_P_H_ */