2020-09-30 16:03:56 +02:00
|
|
|
// *****************************************************************************
|
|
|
|
// File: APIObject.hpp
|
|
|
|
//
|
|
|
|
// Description: Base interface for objects created by dgVoodoo
|
|
|
|
//
|
|
|
|
// Contact person: DG
|
|
|
|
//
|
2022-06-16 14:42:29 +02:00
|
|
|
// *****************************************************************************
|
2020-09-30 16:03:56 +02:00
|
|
|
|
|
|
|
#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
|