11 lines
308 B
C++
11 lines
308 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <functional>
|
|
#include "audioInput/AudioStream.h"
|
|
#include "Phone.h"
|
|
#include "centiseconds.h"
|
|
|
|
std::map<centiseconds, Phone> detectPhones(std::function<std::unique_ptr<AudioStream>(void)> createAudioStream, std::function<void(double)> reportProgress);
|