chromium/third_party/freetype-testing/src/fuzzing/src/visitors/facevisitor-type1tables.cpp

// facevisitor-type1tables.cpp
//
//   Implementation of FaceVisitorType1Tables.
//
// 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.


#include "visitors/facevisitor-type1tables.h"

#include <cassert>
#include <vector>


  void
  freetype::FaceVisitorType1Tables::
  run( Unique_FT_Face  face )
  {}


  void
  freetype::FaceVisitorType1Tables::
  get_string( Unique_FT_Face&          face,
              PS_Dict_Keys             key,
              std::vector<FT_String>&  str )
  {}


  void
  freetype::FaceVisitorType1Tables::
  get_string( Unique_FT_Face&          face,
              PS_Dict_Keys             key,
              FT_UInt                  index,
              std::vector<FT_String>&  str )
  {}


  void
  freetype::FaceVisitorType1Tables::
  loop_string( Unique_FT_Face&          face,
               size_t                   max_value_computed,
               size_t                   max_value_static,
               std::string              values_name,
               PS_Dict_Keys             key,
               std::vector<FT_String>&  value )
  {}