blob: 0716ef749478bf92e18fc96eac9556f8e8e0b504 (
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
56
57
|
//
// C++ Interface: effectstack
//
// Description:
//
//
// Author: Robert Vogl <voglrobe@lapislazuli>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef EFFECTSTACK_H
#define EFFECTSTACK_H
// KDE includes
#include <arts/kmedia2.h>
#include <kconfig.h>
#include <arts/kartsdispatcher.h>
#include <arts/kartsserver.h>
#include <arts/soundserver.h>
namespace Arts
{
class SoundServerV2;
}
using namespace Arts;
// forward declarations
class FXPluginHandler;
/**
@author Robert Vogl
*/
class EffectStack{
public:
EffectStack(FXPluginHandler *pluginhandler=0, KConfig *config=0);
~EffectStack();
// KDE::PlayObject *playobj;
KArtsDispatcher dispatcher;
KArtsServer server;
StereoEffectStack FX_Stack;
public: //Methods
bool loadEffects();
bool unloadEffects();
private:
FXPluginHandler *m_pluginhandler;
KConfig *m_config;
};
#endif
|