blob: 777e55ff147b95e9aed43f1e9017dc44081deb62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <boost/shared_ptr.hpp>
#include "Swiften/Events/Event.h"
namespace Swift {
class EventController;
class SoundPlayer;
class SoundEventController {
public:
SoundEventController(EventController* eventController, SoundPlayer* soundPlayer, bool playSounds);
void setPlaySounds(bool playSounds);
private:
void handleEventQueueEventAdded(boost::shared_ptr<Event> event);
EventController* eventController_;
SoundPlayer* soundPlayer_;
bool playSounds_;
};
}
|