2010-07-09 08:56:25 +00:00
|
|
|
/*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2010-07-09 08:56:25 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Copyright 2009-2011 Jörg Hermann Müller
|
2010-07-09 08:56:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of AudaSpace.
|
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Audaspace 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
|
2010-07-09 08:56:25 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* AudaSpace 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
|
2011-02-18 23:47:37 +00:00
|
|
|
* GNU General Public License for more details.
|
2010-07-09 08:56:25 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Audaspace; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-07-09 08:56:25 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2010-07-09 08:56:25 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-25 10:21:56 +00:00
|
|
|
/** \file audaspace/FX/AUD_DoubleFactory.h
|
|
|
|
* \ingroup audfx
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __AUD_DOUBLEFACTORY_H__
|
|
|
|
#define __AUD_DOUBLEFACTORY_H__
|
2010-07-09 08:56:25 +00:00
|
|
|
|
|
|
|
#include "AUD_IFactory.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This factory plays two other factories behind each other.
|
|
|
|
*/
|
|
|
|
class AUD_DoubleFactory : public AUD_IFactory
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* First played factory.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
boost::shared_ptr<AUD_IFactory> m_factory1;
|
2010-07-09 08:56:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Second played factory.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
boost::shared_ptr<AUD_IFactory> m_factory2;
|
2010-07-09 08:56:25 +00:00
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
// hide copy constructor and operator=
|
|
|
|
AUD_DoubleFactory(const AUD_DoubleFactory&);
|
|
|
|
AUD_DoubleFactory& operator=(const AUD_DoubleFactory&);
|
|
|
|
|
2010-07-09 08:56:25 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a new double factory.
|
|
|
|
* \param factory1 The first input factory.
|
|
|
|
* \param factory2 The second input factory.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
AUD_DoubleFactory(boost::shared_ptr<AUD_IFactory> factory1, boost::shared_ptr<AUD_IFactory> factory2);
|
2010-07-09 08:56:25 +00:00
|
|
|
|
2012-11-05 14:24:35 +00:00
|
|
|
virtual boost::shared_ptr<AUD_IReader> createReader();
|
2010-07-09 08:56:25 +00:00
|
|
|
};
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#endif //__AUD_DOUBLEFACTORY_H__
|