chromium/third_party/freetype-testing/src/fuzzing/src/visitors/glyphvisitor-outlines.h

// glyphvisitor-outlines.h
//
//   Invoke API functions that deal with outline processing and are not used
//   by FreeType itself.
//
//   Drivers:
//     - CFF
//     - CID Type 1
//     - PFR
//     - TrueType
//     - Type 1
//     - Type 42
//
// 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 VISITORS_GLYPH_VISITOR_OUTLINES_H_
#define VISITORS_GLYPH_VISITOR_OUTLINES_H_


#include <vector>

#include "utils/utils.h"
#include "visitors/glyphvisitor.h"


namespace freetype {


  class GlyphVisitorOutlines
    : public GlyphVisitor
  {};
}


#endif // VISITORS_GLYPH_VISITOR_OUTLINES_H_