aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/cam/cam_s.h
blob: cceb99b87f2f49cc92e71905986bf91183cf3d3a (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/cam/cam.h"

namespace Service::CAM {

class CAM_S final : public Module::Interface {
public:
    explicit CAM_S(std::shared_ptr<Module> cam);

private:
    SERVICE_SERIALIZATION(CAM_S, cam, Module)
};

} // namespace Service::CAM

BOOST_CLASS_EXPORT_KEY(Service::CAM::CAM_S)
BOOST_SERIALIZATION_CONSTRUCT(Service::CAM::CAM_S)