mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
24 lines
625 B
C++
24 lines
625 B
C++
|
|
/**
|
||
|
|
* =========================================================================
|
||
|
|
* File : archive.cpp
|
||
|
|
* Project : 0 A.D.
|
||
|
|
* Description : interface for reading from and creating archives.
|
||
|
|
* =========================================================================
|
||
|
|
*/
|
||
|
|
|
||
|
|
// license: GPL; see lib/license.txt
|
||
|
|
|
||
|
|
#include "precompiled.h"
|
||
|
|
#include "archive.h"
|
||
|
|
|
||
|
|
ERROR_ASSOCIATE(ERR::ARCHIVE_UNKNOWN_FORMAT, "Unknown archive format", -1);
|
||
|
|
ERROR_ASSOCIATE(ERR::ARCHIVE_UNKNOWN_METHOD, "Unknown compression method", -1);
|
||
|
|
|
||
|
|
IArchiveReader::~IArchiveReader()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
IArchiveWriter::~IArchiveWriter()
|
||
|
|
{
|
||
|
|
}
|