aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/frd/frd_a.h
blob: 0bdd87525267fd117c360e4709920d74dc6d2c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

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

namespace Service::FRD {

class FRD_A final : public Module::Interface {
public:
    explicit FRD_A(std::shared_ptr<Module> frd);

private:
    SERVICE_SERIALIZATION(FRD_A, frd, Module)
};

} // namespace Service::FRD

BOOST_CLASS_EXPORT_KEY(Service::FRD::FRD_A)
BOOST_SERIALIZATION_CONSTRUCT(Service::FRD::FRD_A)