You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Interface of CAward, the base class for all awards
|
||
|
//
|
||
|
// $Workfile: $
|
||
|
// $Date: $
|
||
|
//
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// $Log: $
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#ifndef AWARD_H
|
||
|
#define AWARD_H
|
||
|
#ifdef WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
#pragma warning(disable :4786)
|
||
|
#include "Report.h"
|
||
|
#include <string>
|
||
|
|
||
|
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// Purpose: CAward is the base class for all awards, it is in turn a subclass of
|
||
|
// CReport. This class handles all the boring details of writing out the awards
|
||
|
// and things, so that the subclasses need only specify the name of the award
|
||
|
// and who won it, then this class will take care of the rest
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
class CAward: public CReport
|
||
|
{
|
||
|
//from CReport:
|
||
|
protected:
|
||
|
virtual void generate();
|
||
|
protected:
|
||
|
std::string awardName;
|
||
|
std::string winnerName;
|
||
|
PID winnerID;
|
||
|
bool fNoWinner;
|
||
|
|
||
|
CAward(char* name);
|
||
|
|
||
|
|
||
|
virtual void extendedinfo(CHTMLFile& html){};
|
||
|
virtual void noWinner(CHTMLFile& html){};
|
||
|
|
||
|
|
||
|
public:
|
||
|
virtual void getWinner(){}
|
||
|
virtual void writeHTML(CHTMLFile& html);
|
||
|
|
||
|
virtual ~CAward();
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // AWARD_H
|