mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
30 lines
774 B
C++
30 lines
774 B
C++
// ======================================================================
|
|
//
|
|
// TaskUpdatePurgeAccountList.h
|
|
// copyright (c) 2005 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_TaskUpdatePurgeAccountList_H
|
|
#define INCLUDED_TaskUpdatePurgeAccountList_H
|
|
|
|
// ======================================================================
|
|
|
|
#include "sharedDatabaseInterface/DbTaskRequest.h"
|
|
|
|
class TaskUpdatePurgeAccountList : public DB::TaskRequest
|
|
{
|
|
public:
|
|
TaskUpdatePurgeAccountList();
|
|
virtual bool process (DB::Session *session);
|
|
virtual void onComplete ();
|
|
|
|
private:
|
|
StationId m_account;
|
|
int m_purgePhase;
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|