Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Codec.cpp
Go to the documentation of this file.
1 //
2 // C++ Implementation: Audio::Codec
3 //
4 
5 #include "Codec.h"
6 #include "config.h"
7 
8 namespace Audio {
9 
11  {
12  }
13 
14  Codec::Codec(const std::string &_name) throw() : name(_name)
15  {
16  }
17 
18  const std::string& Codec::getName() const throw()
19  {
20  return name;
21  }
22 
23  const std::vector<std::string>* Codec::getExtensions() const throw()
24  {
25  return 0;
26  }
27 
28 };