1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-12-02 14:24:16 +01:00
HLMetaModOfficial/sourcehook/sourcehook_impl_ciface.h
Pavol Marko 7fdf6be5ac linux.gcc compat
--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40466
2007-10-07 22:24:01 +00:00

82 lines
1.5 KiB
C++

/* ======== SourceHook ========
* Copyright (C) 2004-2007 Metamod:Source Development Team
* No warranties of any kind
*
* License: zlib/libpng
*
* Author(s): Pavol "PM OnoTo" Marko
* ============================
*/
#ifndef __SOURCEHOOK_IMPL_CIFACE_H__
#define __SOURCEHOOK_IMPL_CIFACE_H__
#include "sh_list.h"
namespace SourceHook
{
namespace Impl
{
class CIface
{
// *** Data ***
void *m_Ptr;
List<CHook> m_PreHooks;
List<CHook> m_PostHooks;
public:
// *** Descriptor ***
typedef void* Descriptor;
// *** Interface ***
inline CIface(void *ptr);
inline bool operator==(const Descriptor &other);
inline void *GetPtr() const;
inline List<CHook> &GetPreHookList();
inline List<CHook> &GetPostHookList();
inline const List<CHook> &GetPreHookList() const;
inline const List<CHook> &GetPostHookList() const;
};
// *** Implementation ***
inline CIface::CIface(void *ptr)
: m_Ptr(ptr)
{
}
inline bool CIface::operator==(const Descriptor &other)
{
return m_Ptr == other;
}
inline void *CIface::GetPtr() const
{
return m_Ptr;
}
inline List<CHook> &CIface::GetPreHookList()
{
return m_PreHooks;
}
inline List<CHook> &CIface::GetPostHookList()
{
return m_PostHooks;
}
inline const List<CHook> &CIface::GetPreHookList() const
{
return m_PreHooks;
}
inline const List<CHook> &CIface::GetPostHookList() const
{
return m_PostHooks;
}
}
}
#endif