blob: 33d0193533ff04ffc2a16dccaffb1a094c7459db [file] [log] [blame]
// tarreader.h
//
// Used to extract files from tar archives.
//
// Copyright 2018-2019 by
// Armin Hasitzka.
//
// This file is part of the FreeType project, and may only be used,
// modified, and distributed under the terms of the FreeType project
// license, LICENSE.TXT. By continuing to use, modify, or distribute
// this file you indicate that you have read the license and
// understand and accept it fully.
#ifndef UTILS_TAR_READER_H_
#define UTILS_TAR_READER_H_
#include <vector>
#include <ft2build.h>
#include FT_FREETYPE_H
#include "utils/noncopyable.h"
#include "utils/utils.h"
namespace freetype {
class TarReader
: private noncopyable
{
public:
typedef std::vector<std::vector<FT_Byte>> Files;
// @Input:
// files ::
// Extracted files will be added to this vector.
TarReader( Files& files )
: files(files) {}
bool
extract_data( const uint8_t* data,
size_t size );
private:
Files& files;
};
}
#endif // UTILS_TAR_READER_H_