13
0
livetrax/libs/backends/wavesaudio/wavesapi/refmanager/WCRefManager.h
Paul Davis 000609901b add correct copyright statements to all files in Waves backend except those derived from portaudio/portmidi
This follows the letter sent from Waves Audio Ltd. to Paul Davis dated February 20th 2014 agreeing to release this code
under the GNU Public License, version 2, with copyright owned by Waves Audio Ltd
2014-10-07 16:17:34 -04:00

82 lines
2.3 KiB
C++

/*
Copyright (C) 2014 Waves Audio Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef WCREFMANAGER_H
#define WCREFMANAGER_H
#define SAFE_RELEASE(p) if (p) {p->Release(); p = NULL;}
//In order to use this interface, derive the Interface class
//from WCRefManager_Interface and derive the implementation class
//from WCRefManager_Impl. Further, in the implementation class
//declaration, place the macro WCREFMANAGER_IMPL.
class WCRefManager_Interface
{
public:
/// Constructor.
WCRefManager_Interface() {};
/// Destructor.
virtual ~WCRefManager_Interface() {};
/// Adds a reference to class.
virtual void AddRef() = 0;
/// Decrements reference count and deletes the object if reference count becomes zero.
virtual void Release() = 0;
};
///! See details at WCRefManager_Interface for how to use this.
class WCRefManager_Impl
{
public:
WCRefManager_Impl () : m_RefCount(1) {}
virtual ~WCRefManager_Impl() {}
protected:
/// Variable to store reference count.
unsigned int m_RefCount;
/// Helper to put implementation in an interface derived class, don't forget to
/// derive the impl from WCRefManager_Impl
#define WCREFMAN_IMPL \
public: \
virtual void AddRef() {m_RefCount++;} \
virtual void Release() {m_RefCount--; if (m_RefCount<=0) delete this;}
};
class WCRefManager
{
public:
/// Construcotr.
WCRefManager();
/// Destructor.
virtual ~WCRefManager();
/// Adds a reference to class.
void AddRef();
/// Decrements reference count and deletes the object if reference count becomes zero.
void Release();
private:
/// Variable to store reference count.
unsigned int m_RefCount;
};
#endif // WCREFMANAGER_H