-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8d4386
commit cd83a86
Showing
12 changed files
with
489 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,7 @@ | |
"*.rh": "cpp", | ||
"any": "cpp", | ||
"deque": "cpp", | ||
"codecvt": "cpp" | ||
"codecvt": "cpp", | ||
"cwctype": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
#pragma once | ||
#include "../imgarchive.h" | ||
|
||
class IParser | ||
{ | ||
public: | ||
// Opens the archive & feeds data | ||
virtual void Open(IMGArchive *pMgr) = 0; | ||
|
||
// Exports an entity form the archive | ||
virtual void Export(IMGArchive *pMgr, EntryInfo *pEntry, const std::wstring& filePath, bool logMsg = true) = 0; | ||
|
||
// Imports an entity to the archive | ||
virtual void Import(IMGArchive *pArc, const std::wstring &path, bool replace) = 0; | ||
|
||
// Returns true if a valid archive format | ||
virtual bool IsValid() = 0; | ||
|
||
// Rebuilds the archive & saves changes | ||
virtual void Save(ArchiveInfo *pInfo) = 0; | ||
}; |
Oops, something went wrong.