[hac|hac-hb] Adds missing includes.

This commit is contained in:
jakcron 2018-08-07 17:31:06 +08:00
parent d663efe30b
commit 6b5f90e683
12 changed files with 9 additions and 11 deletions

View file

@ -1,3 +1,4 @@
#include <cstring>
#include <nn/hac/AssetHeader.h>
nn::hac::AssetHeader::AssetHeader()

View file

@ -1,5 +1,6 @@
#pragma once
#include <string>
#include <cstring>
#include <fnd/ISerialisable.h>
#include <fnd/List.h>
#include <nn/hac/cnmt.h>

View file

@ -55,9 +55,6 @@ namespace hac
bool operator==(const NcaHeader& other) const;
bool operator!=(const NcaHeader& other) const;
// to be used after export
size_t getSize() const;
// export/import binary
void toBytes();
void fromBytes(const byte_t* bytes, size_t len);

View file

@ -1,4 +1,5 @@
#pragma once
#include <cstring>
#include <nn/hac/nro.h>
#include <fnd/ISerialisable.h>
#include <fnd/List.h>

View file

@ -1,4 +1,5 @@
#pragma once
#include <cstring>
#include <nn/hac/nso.h>
#include <fnd/ISerialisable.h>
#include <fnd/List.h>

View file

@ -69,9 +69,6 @@ namespace hac
bool operator==(const PfsHeader& other) const;
bool operator!=(const PfsHeader& other) const;
// to be used after export
size_t getSize() const;
// export/import binary
void toBytes();
void fromBytes(const byte_t* bytes, size_t len);

View file

@ -46,9 +46,6 @@ namespace hac
// variables
bool mIsServer;
std::string mName;
bool isEqual(const ServiceAccessControlEntry& other) const;
void copyFrom(const ServiceAccessControlEntry& other);
};
}
}

View file

@ -1,3 +1,4 @@
#pragma once
#include <fnd/types.h>
#include <fnd/sha.h>
#include <nn/hac/macro.h>

View file

@ -1,3 +1,4 @@
#include <cstring>
#include <nn/hac/ApplicationControlPropertyBinary.h>
nn::hac::ApplicationControlPropertyBinary::ApplicationControlPropertyBinary()

View file

@ -1,7 +1,6 @@
#include <cstring>
#include <nn/hac/FileSystemAccessControlBinary.h>
#include <fnd/SimpleTextOutput.h>
nn::hac::FileSystemAccessControlBinary::FileSystemAccessControlBinary()
{
clear();

View file

@ -1,3 +1,4 @@
#include <cstring>
#include <nn/hac/ServiceAccessControlBinary.h>
nn::hac::ServiceAccessControlBinary::ServiceAccessControlBinary()

View file

@ -1,3 +1,4 @@
#include <cstring>
#include <nn/hac/ServiceAccessControlEntry.h>
nn::hac::ServiceAccessControlEntry::ServiceAccessControlEntry()