mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +08:00
30 lines
526 B
C++
30 lines
526 B
C++
#ifndef ICLIENTTHINKABLE_H
|
|
#define ICLIENTTHINKABLE_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include "iclientunknown.h"
|
|
|
|
|
|
class CClientThinkHandlePtr;
|
|
typedef CClientThinkHandlePtr* ClientThinkHandle_t;
|
|
|
|
|
|
abstract_class IClientThinkable
|
|
{
|
|
public:
|
|
virtual IClientUnknown * GetIClientUnknown() = 0;
|
|
|
|
virtual void ClientThink() = 0;
|
|
|
|
virtual ClientThinkHandle_t GetThinkHandle() = 0;
|
|
virtual void SetThinkHandle(ClientThinkHandle_t hThink) = 0;
|
|
|
|
virtual void Release() = 0;
|
|
};
|
|
|
|
|
|
#endif
|