blob: 9ac6f76d7e042df05034db665a50281e2d36928e (
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/MessageEvent.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<MessageEvent> event);
EventController* eventController_;
SoundPlayer* soundPlayer_;
bool playSounds_;
};
}
|