TDME2
1.9.121
src
tdme
tools
editor
views
PlayableSoundView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/tools/editor/views/fwd-tdme.h
>
7
8
using
std::string;
9
10
/**
11
* Playable sound view interface, which represents a view that supports playing sounds additionally
12
* @author Andreas Drewke
13
* @version $Id$
14
*/
15
struct
tdme::tools::editor::views::PlayableSoundView
16
{
17
/**
18
* Destructor
19
*/
20
virtual
~PlayableSoundView
() {}
21
22
/**
23
* Play sound
24
* @param soundId sound id
25
*/
26
virtual
void
playSound
(
const
string
& soundId) = 0;
27
28
/**
29
* Stop sound
30
*/
31
virtual
void
stopSound
() = 0;
32
33
};
tdme::tools::editor::views::PlayableSoundView
Playable sound view interface, which represents a view that supports playing sounds additionally.
Definition:
PlayableSoundView.h:16
tdme::tools::editor::views::PlayableSoundView::stopSound
virtual void stopSound()=0
Stop sound.
tdme::tools::editor::views::PlayableSoundView::~PlayableSoundView
virtual ~PlayableSoundView()
Destructor.
Definition:
PlayableSoundView.h:20
tdme::tools::editor::views::PlayableSoundView::playSound
virtual void playSound(const string &soundId)=0
Play sound.
tdme.h
fwd-tdme.h
Generated by
1.9.3