mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
33 lines
795 B
C++
Executable File
33 lines
795 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// TaskSaveSnapshot.h
|
|
// copyright (c) 2001 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_TaskSaveSnapshot_H
|
|
#define INCLUDED_TaskSaveSnapshot_H
|
|
|
|
// ======================================================================
|
|
|
|
#include "sharedDatabaseInterface/DbTaskRequest.h"
|
|
|
|
class Snapshot;
|
|
|
|
// ======================================================================
|
|
|
|
class TaskSaveSnapshot : public DB::TaskRequest
|
|
{
|
|
public:
|
|
TaskSaveSnapshot(Snapshot *snapshot);
|
|
bool process(DB::Session *session);
|
|
void onComplete();
|
|
|
|
private:
|
|
Snapshot *m_snapshot;
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|