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.
45 lines
1.3 KiB
45 lines
1.3 KiB
//========= Copyright (c), Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Holds the CTFMapContribution object
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef TFMAPCONTRIBUTION_H
|
|
#define TFMAPCONTRIBUTION_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "gcsdk/protobufsharedobject.h"
|
|
#include "tf_gcmessages.h"
|
|
|
|
namespace GCSDK
|
|
{
|
|
class CSQLAccess;
|
|
};
|
|
|
|
//---------------------------------------------------------------------------------
|
|
// Purpose: All the account-level information that the GC tracks for TF
|
|
//---------------------------------------------------------------------------------
|
|
class CTFMapContribution : public GCSDK::CProtoBufSharedObject< CSOTFMapContribution, k_EEconTypeMapContribution >
|
|
{
|
|
#ifdef GC
|
|
DECLARE_CLASS_MEMPOOL( CTFMapContribution );
|
|
#endif
|
|
|
|
public:
|
|
CTFMapContribution() {}
|
|
|
|
#ifdef GC
|
|
virtual bool BYieldingAddInsertToTransaction( GCSDK::CSQLAccess & sqlAccess );
|
|
virtual bool BYieldingAddWriteToTransaction( GCSDK::CSQLAccess & sqlAccess, const CUtlVector< int > &fields );
|
|
virtual bool BYieldingAddRemoveToTransaction( GCSDK::CSQLAccess & sqlAccess );
|
|
|
|
void WriteToRecord( CSchMapContribution *pMapContribution ) const;
|
|
void ReadFromRecord( const CSchMapContribution & mapContribution );
|
|
#endif
|
|
};
|
|
|
|
#endif // TFMAPCONTRIBUTION_H
|
|
|