mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-12 05:40:04 +00:00
Serialize IR, MVD, NDM, NEWS, NFC
This commit is contained in:
parent
3d6e372f96
commit
2409ee39cb
19 changed files with 112 additions and 5 deletions
|
@ -2,9 +2,12 @@
|
|||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "common/archives.h"
|
||||
#include "core/hle/ipc_helpers.h"
|
||||
#include "core/hle/service/mvd/mvd_std.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::MVD::MVD_STD)
|
||||
|
||||
namespace Service::MVD {
|
||||
|
||||
MVD_STD::MVD_STD() : ServiceFramework("mvd:std", 1) {
|
||||
|
|
|
@ -12,6 +12,15 @@ class MVD_STD final : public ServiceFramework<MVD_STD> {
|
|||
public:
|
||||
MVD_STD();
|
||||
~MVD_STD() = default;
|
||||
|
||||
private:
|
||||
template <class Archive>
|
||||
void serialize(Archive& ar, const unsigned int) {
|
||||
ar& boost::serialization::base_object<Kernel::SessionRequestHandler>(*this);
|
||||
}
|
||||
friend class boost::serialization::access;
|
||||
};
|
||||
|
||||
} // namespace Service::MVD
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::MVD::MVD_STD)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue