musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#ifdef _WIN32
#include "win_terminal.h"
#else
#include "unix_terminal.h"
#endif
#include <memory>
namespace bbs {
std::unique_ptr<Terminal> create_local_terminal() {
    return std::make_unique<LocalTerminal>();
}

}