khanat-opennel-code/code/nel/src/sound/driver/effect.cpp

57 lines
1.3 KiB
C++
Raw Normal View History

2010-05-06 00:08:41 +00:00
/**
* \file effect.cpp
* \brief IEffect
* \date 2008-09-15 22:27GMT
* \author Jan Boon (Kaetemi)
* IEffect
*/
/*
* Copyright (C) 2008 by authors
*
* This file is part of NEVRAX NEL.
* NEVRAX NEL 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.
*
* NEVRAX NEL 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 NEVRAX NEL; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*/
#include <nel/misc/types_nl.h>
#include "effect.h"
// STL includes
// NeL includes
// #include <nel/misc/debug.h>
// Project includes
using namespace std;
// using namespace NLMISC;
namespace NLSOUND {
IReverbEffect::IReverbEffect()
{
}
IReverbEffect::~IReverbEffect()
{
}
} /* namespace NLSOUND */
/* end of file */