More build fixes.
Changed the documentation builder to automatically prepend %EPOCROOT% (converted to a path relative form) to pre-processor include path options that start with 'epoc32'. Prevously $(EPOCROOT) was prepended in the makefile, which broke the documentation build because the pre-processor will only accecpt relative path include options.
// 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__