1 // Copyright 2016 Citra Emulator Project
2 // Licensed under GPLv2 or any later version
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 #include "core/hle/service/service.h"
8 
9 namespace Service::MVD {
10 
11 class MVD_STD final : public ServiceFramework<MVD_STD> {
12 public:
13     MVD_STD();
14     ~MVD_STD() = default;
15 
16 private:
17     SERVICE_SERIALIZATION_SIMPLE
18 };
19 
20 } // namespace Service::MVD
21 
22 BOOST_CLASS_EXPORT_KEY(Service::MVD::MVD_STD)
23