summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink_details.h
blob: 34110c97a657d6ac69b6d9ac754be045fb965ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <functional>
#include <memory>
#include <vector>

namespace AudioCore {

class Sink;

struct SinkDetails {
    SinkDetails(const char* id_, std::function<std::unique_ptr<Sink>()> factory_)
        : id(id_), factory(factory_) {
    }

    /// Name for this sink.
    const char* id;
    /// A method to call to construct an instance of this type of sink.
    std::function<std::unique_ptr<Sink>()> factory;
};

extern const std::vector<SinkDetails> g_sink_details;

} // namespace AudioCore