refactor (5/?)
This commit is contained in:
@ -168,8 +168,12 @@ namespace LibCmo::CK2 {
|
||||
CKERROR DeepLoad(CKSTRING u8_filename);
|
||||
|
||||
// ========== Loading Result ==========
|
||||
CKINT GetSaveIdMax();
|
||||
const XContainer::XArray<CKFileObject>& GetFileObjects();
|
||||
const XContainer::XArray<CKFileManagerData>& GetManagersData();
|
||||
const XContainer::XArray<CKFilePluginDependencies>& GetPluginsDep();
|
||||
const XContainer::XArray<XContainer::XString>& GetIncludedFiles();
|
||||
const CKFileInfo GetFileInfo();
|
||||
|
||||
protected:
|
||||
CKBOOL m_Done;
|
||||
|
@ -129,14 +129,30 @@ namespace LibCmo::CK2 {
|
||||
|
||||
CKFileReader::~CKFileReader() {}
|
||||
|
||||
CKINT CKFileReader::GetSaveIdMax() {
|
||||
return m_SaveIDMax;
|
||||
}
|
||||
|
||||
const XContainer::XArray<CKFileObject>& CKFileReader::GetFileObjects() {
|
||||
return m_FileObjects;
|
||||
}
|
||||
|
||||
const XContainer::XArray<CKFileManagerData>& CKFileReader::GetManagersData() {
|
||||
return m_ManagersData;
|
||||
}
|
||||
|
||||
const XContainer::XArray<CKFilePluginDependencies>& CKFileReader::GetPluginsDep() {
|
||||
return m_PluginsDep;
|
||||
}
|
||||
|
||||
const XContainer::XArray<XContainer::XString>& CKFileReader::GetIncludedFiles() {
|
||||
return m_IncludedFiles;
|
||||
}
|
||||
|
||||
const CKFileInfo CKFileReader::GetFileInfo() {
|
||||
return m_FileInfo;
|
||||
}
|
||||
|
||||
#pragma endregion
|
||||
|
||||
#pragma region CKFileWriter
|
||||
|
Reference in New Issue
Block a user