1
0
mirror of https://github.com/dege-diosg/dgVoodoo2 synced 2024-07-08 20:51:02 +02:00
dgVoodoo2/dgVoodooAPI/Inc/APIObject.hpp

32 lines
670 B
C++
Raw Permalink Normal View History

// *****************************************************************************
// File: APIObject.hpp
//
// Description: Base interface for objects created by dgVoodoo
//
// Contact person: DG
//
// *****************************************************************************
#ifndef APIOBJECT_HPP
#define APIOBJECT_HPP
// --- Includes ----------------------------------------------------------------
#include "APITypes.h"
namespace dgVoodoo {
// --- APIObject ---------------------------------------------------------------
class APIObject
{
public:
virtual ~APIObject () {}
virtual void Release ();
};
} // namespace dgVoodoo
#endif // APIOBJECT_HPP