mirror of
https://github.com/dege-diosg/dgVoodoo2
synced 2024-07-08 20:51:02 +02:00
32 lines
669 B
C++
32 lines
669 B
C++
// *****************************************************************************
|
|
// 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
|