1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/DDraw/Visitors/DirectDrawPaletteVtblVisitor.h
2016-10-23 15:27:32 +02:00

19 lines
353 B
C++

#pragma once
#include "Common/VtableVisitor.h"
template <>
struct VtableForEach<IDirectDrawPaletteVtbl>
{
template <typename Vtable, typename Visitor>
static void forEach(Visitor& visitor)
{
VtableForEach<IUnknownVtbl>::forEach<Vtable>(visitor);
DD_VISIT(GetCaps);
DD_VISIT(GetEntries);
DD_VISIT(Initialize);
DD_VISIT(SetEntries);
}
};