PEBL 2.2
Psychology Experiment Building Language - Cross-platform psychological experiment development system
validator/PlatformAudioOut.cpp
Go to the documentation of this file.
1//* -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*- */
2#include "PlatformAudioOut.h"
3
5PlatformAudioOut::PlatformAudioOut(const std::string& filename) : PAudioOut(filename), PEBLObjectBase(CDT_AUDIOOUT) {}
7
8bool PlatformAudioOut::LoadSoundFile(const std::string& filename) { return true; }
9bool PlatformAudioOut::Play() { return true; }
10bool PlatformAudioOut::Stop() { return true; }
11
12std::ostream& PlatformAudioOut::SendToStream(std::ostream& out) const {
13 out << "PlatformAudioOut (validator)";
14 return out;
15}
@ CDT_AUDIOOUT
Definition PEBLObject.h:47
bool LoadSoundFile(const char *filename)
virtual std::ostream & SendToStream(std::ostream &out) const