tools/createsrc-templates/AsConsole/inc/SkeletonTemplate.h
author Joe Branton <joe.branton@accenture.com>
Thu, 29 Jul 2010 13:16:17 +1000
changeset 18 10421720b8ae
parent 0 7f656887cf89
permissions -rw-r--r--
Patch the spcre wins def-file to get it to build.

// SkeletonTemplate.h
//
// Copyright (c) 2010 Accenture. All rights reserved.
//

#ifndef SKELETONTEMPLATE_H__
#define SKELETONTEMPLATE_H__

class CSkeletonTemplate : public CActive
	{
public:
	static CSkeletonTemplate* NewLC(CConsoleBase& aConsole);
	static CSkeletonTemplate* NewL(CConsoleBase& aConsole);
	
	~CSkeletonTemplate();
	
	void Start();
	
	// from CActive:
	virtual void RunL();
	virtual void DoCancel();
private:
	CSkeletonTemplate(CConsoleBase& aConsole);
	void ConstructL();
private:
	CConsoleBase& iConsole;
	};


#endif //SKELETONTEMPLATE_H__