// FaceFuzzTarget.h // // Base class of face fuzz targets. // // 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 TARGETS_FACEFUZZTARGET_H_ #define TARGETS_FACEFUZZTARGET_H_ #include <functional> #include <string> #include <ft2build.h> #include FT_FREETYPE_H #include "iterators/faceloaditerator.h" #include "iterators/faceprepiterator.h" #include "iterators/glyphloaditerator.h" #include "targets/FuzzTarget.h" #include "utils/faceloader.h" #include "utils/utils.h" #include "visitors/facevisitor.h" namespace freetype { class FaceFuzzTarget : public FuzzTarget { … }; } #endif // TARGETS_FACEFUZZTARGET_H_