Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AUD_SuperposeFactory.cpp « FX « audaspace « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afd1ec18efba45711f48843c7eae07a010b19abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * $Id$
 *
 * ***** BEGIN LGPL LICENSE BLOCK *****
 *
 * Copyright 2009 Jörg Hermann Müller
 *
 * This file is part of AudaSpace.
 *
 * AudaSpace is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (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
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with AudaSpace.  If not, see <http://www.gnu.org/licenses/>.
 *
 * ***** END LGPL LICENSE BLOCK *****
 */

#include "AUD_SuperposeFactory.h"
#include "AUD_SuperposeReader.h"

AUD_SuperposeFactory::AUD_SuperposeFactory(AUD_IFactory* factory1, AUD_IFactory* factory2) :
		m_factory1(factory1), m_factory2(factory2) {}

AUD_IReader* AUD_SuperposeFactory::createReader()
{
	AUD_IReader* reader1 = m_factory1->createReader();
	if(!reader1)
		return 0;
	AUD_IReader* reader2;
	try
	{
		reader2 = m_factory2->createReader();
		if(!reader2)
		{
			delete reader1; AUD_DELETE("reader")
			return 0;
		}
	}
	catch(AUD_Exception&)
	{
		delete reader1; AUD_DELETE("reader")
		throw;
	}

	AUD_IReader* reader = new AUD_SuperposeReader(reader1, reader2);
	return reader;
}