commonuisupport/uikon/test/tmessageserv/messageservclient.h
author William Roberts <williamr@symbian.org>
Fri, 26 Feb 2010 17:51:29 +0000
branchRCL_3
changeset 5 6061fc1ea56b
parent 0 2f259fa3e83a
permissions -rw-r--r--
Merge in workaround for Bug 1676

// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "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:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

/**
 @file
 @internalComponent - Internal Symbian test code 
*/



#ifndef	__MESSAGESERVCLIENT_H
#define	__MESSAGESERVCLIENT_H

#include <e32base.h>

class RMessageServ : public RSessionBase
	{
public:
	IMPORT_C RMessageServ();
	IMPORT_C TInt Connect();
	TVersion Version() const;
	IMPORT_C TInt Stop();
	IMPORT_C TInt SetFromString(const TDesC& aString, const TText8* aString1, 
		TInt aLineNumber);
	IMPORT_C TInt SetErrorFromString(const TDesC& aString, const TText8* aString1, 
		TInt aLineNumber, TInt aErr);
	};
	
#endif