summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_u.h
blob: 2b8576756fad6b22b3f6037bf7f9c034e930741e (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
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

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

namespace Kernel {
class HLERequestContext;
}

namespace Service {
namespace Audio {

class AudInU final : public ServiceFramework<AudInU> {
public:
    explicit AudInU();
    ~AudInU() = default;
};

} // namespace Audio
} // namespace Service