Tidied iocli exports, build macro tweaks.
Removed 4 overloads of CCommandBase::RunCommand[L] that are no longer used at all, and changed one more to not be exported as it's only used internally to iocli.dll.
fixed builds on platforms that don't support btrace or any form of tracing.
// 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__