summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_a.h
blob: 19a927de52485ef7e0d9721168efd849d5d88c38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Core {
class System;
}

namespace Service::Audio {

class AudInA final : public ServiceFramework<AudInA> {
public:
    explicit AudInA(Core::System& system_);
    ~AudInA() override;
};

} // namespace Service::Audio