chromium/third_party/freetype-testing/src/fuzzing/src/utils/faceloader.h

// faceloader.h
//
//   Wrapper class to create faces from fuzzed input.
//
// 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_FACE_LOADER_H_
#define UTILS_FACE_LOADER_H_


#include <string>
#include <vector>

#include <ft2build.h>
#include FT_FREETYPE_H

#include "utils/tarreader.h"
#include "utils/noncopyable.h"
#include "utils/utils.h"


namespace freetype {


  class FaceLoader
    : private noncopyable
  {};
}


#endif // UTILS_FACE_LOADER_H_