/* * Copyright 2013 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkFontConfigInterface_DEFINED #define SkFontConfigInterface_DEFINED #include "include/core/SkFontStyle.h" #include "include/core/SkRefCnt.h" #include "include/core/SkStream.h" #include "include/core/SkTypeface.h" class SkFontMgr; /** * \class SkFontConfigInterface * * A simple interface for remotable font management. * The global instance can be found with RefGlobal(). */ class SK_API SkFontConfigInterface : public SkRefCnt { … }; #endif