// WTCLIENT.H
//
// Copyright (c) 1998 Symbian Ltd.  All rights reserved.
//

#if !defined(__WTCLIENT_H__)
#define __WTCLIENT_H__
#if !defined(__E32BASE_H__)
#include <e32base.h>
#endif


class CApaCommandLine;
class RFs;

class RMsvWatcher : public RSessionBase
	{
public:
	IMPORT_C RMsvWatcher();
	IMPORT_C virtual ~RMsvWatcher();
	IMPORT_C TInt Connect(RFs& aFs);
	//
	IMPORT_C TInt RegisterExeClient  (TUid aWatcher, const TDesC& aExeName);
	IMPORT_C TInt UnregisterExeClient(TUid aWatcher, const TDesC& aExeName);
	};


#endif