smf/inc/smfplugins/base/smfproviderbase_p.h
author cgandhi <chandradeep.gandhi@sasken.com>
Thu, 15 Apr 2010 15:35:36 +0530
changeset 3 0446eb7b28aa
permissions -rw-r--r--
Updating the sample plugin and other related changes for clients and plugins

/**
 * Copyright (c) 2010 Sasken Communication Technologies Ltd.
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of the "Eclipse Public License v1.0" 
 * which accompanies  this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html"
 *
 * Initial Contributors:
 * Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
 *
 * Contributors:
 * Manasij Roy, Nalina Hariharan
 * 
 * Description:
 * Private class implemented for implicit sharing of SmfProviderBase class
 *
 */

#ifndef SMFPROVIDERBASE_P_H_
#define SMFPROVIDERBASE_P_H_

#include <QImage>
#include <QUrl>
#include <QBuffer>
#include <smfglobal.h>
#include <QSharedData>


class SmfProviderBasePrivate : public QSharedData
{
public:
	/**
	 * Constructor
	 */
	SmfProviderBasePrivate( ) { 
		m_serviceName.clear(); 
		m_description.clear();
		m_serviceUrl.clear();
		m_applicationUrl.clear();
		m_pluginId.clear();
		m_authenticationAppId = 0;
		m_registrationId.clear();
	}
	
	/**
	 * Copy Consturctor
	 * @param aOther The reference object to be copy constructed
	 */
	SmfProviderBasePrivate( const SmfProviderBasePrivate &aOther ) : 
		QSharedData ( aOther ), 
		m_serviceName ( aOther.m_serviceName ),
		m_serviceIcon ( aOther.m_serviceIcon ),
		m_description ( aOther.m_description ),
		m_serviceUrl ( aOther.m_serviceUrl ),
		m_applicationUrl ( aOther.m_applicationUrl ),
		m_applicationIcon ( aOther.m_applicationIcon ),
		m_pluginId ( aOther.m_pluginId ),
		m_authenticationAppId ( aOther.m_authenticationAppId ),
		m_registrationId ( aOther.m_registrationId ), 
		m_usage ( aOther.m_usage )	{ }
	
	/**
	 * Destructor
	 */
	~SmfProviderBasePrivate( );
  
	QString m_serviceName;	// the Localisable name of the service
	QImage m_serviceIcon;	// the Logo of the service
	QString m_description;	// the Readable service description
	QUrl m_serviceUrl;		// the Website of the service
	QUrl m_applicationUrl; 	// URL of the Application providing this service
	QImage m_applicationIcon;	//Icon of the application
	QString m_pluginId;		// The Plugin specific ID
	QString m_authenticationAppId; // ID of the authentication application for this service
	QString m_registrationId; 	// unique registration ID provided by the 
							// Smf for authorised plugins
	SmfPluginDataUsage m_usage;	//data usage of each plugin
	
};

#endif /* SMFPROVIDERBASE_P_H_ */