mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
Correct exports; add some file serialization; fix service base object serialization
This commit is contained in:
parent
f2de70c3fb
commit
996aba39fe
52 changed files with 197 additions and 33 deletions
|
@ -12,6 +12,9 @@ class QTM_C final : public ServiceFramework<QTM_C> {
|
|||
public:
|
||||
QTM_C();
|
||||
~QTM_C() = default;
|
||||
|
||||
private:
|
||||
SERVICE_SERIALIZATION_SIMPLE
|
||||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
|
|
@ -12,6 +12,9 @@ class QTM_S final : public ServiceFramework<QTM_S> {
|
|||
public:
|
||||
QTM_S();
|
||||
~QTM_S() = default;
|
||||
|
||||
private:
|
||||
SERVICE_SERIALIZATION_SIMPLE
|
||||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
|
|
@ -12,6 +12,9 @@ class QTM_SP final : public ServiceFramework<QTM_SP> {
|
|||
public:
|
||||
QTM_SP();
|
||||
~QTM_SP() = default;
|
||||
|
||||
private:
|
||||
SERVICE_SERIALIZATION_SIMPLE
|
||||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
|
|
@ -12,6 +12,9 @@ class QTM_U final : public ServiceFramework<QTM_U> {
|
|||
public:
|
||||
QTM_U();
|
||||
~QTM_U() = default;
|
||||
|
||||
private:
|
||||
SERVICE_SERIALIZATION_SIMPLE
|
||||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue