summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/SoundNotifyData.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-04-04 19:00:03 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-04-04 19:00:03 +0000
commitc814aae8a9ba7f85996792b9c283fcd6605e11ff (patch)
tree480da7d4b69ba386c28dbe717105d741df8f85eb /plugins/XSoundNotify/src/SoundNotifyData.cpp
parent5729f9c9a82d120cfd4a7eeb8b7297ac52a8332b (diff)
added support of all accounts (not only icq and jabber)
not use atl can play mp3 and others (bass_interface.dll required) plugin settings moved to options added relative path support git-svn-id: http://svn.miranda-ng.org/main/trunk@4306 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyData.cpp')
-rw-r--r--plugins/XSoundNotify/src/SoundNotifyData.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyData.cpp b/plugins/XSoundNotify/src/SoundNotifyData.cpp
deleted file mode 100644
index ec153d26c4..0000000000
--- a/plugins/XSoundNotify/src/SoundNotifyData.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "Common.h"
-
-SoundNotifyData::SoundNotifyData() : _contact(0), _soundChanged(false)
-{
-
-}
-
-SoundNotifyData::SoundNotifyData(HANDLE contact, const ModuleString & module, const std::tstring &sound) :
- _contact(contact), _soundPath(sound), _soundChanged(false)
-{
-}
-
-void SoundNotifyData::setSound(const std::tstring &sound)
-{
- _soundChanged = true;
- _soundPath = sound;
-}
-
-HANDLE SoundNotifyData::contact() const
-{
- return _contact;
-}
-
-const std::tstring & SoundNotifyData::soundPath() const
-{
- return _soundPath;
-}
-
-const ModuleString & SoundNotifyData::module() const
-{
- return _module;
-}
-
-bool SoundNotifyData::isSoundChanged() const
-{
- return _soundChanged;
-}