blob: 05cca730c040bb50123e13e4ec7082eb9bec7fd6 [file] [log] [blame]
dan sinclair993a1992017-10-25 20:21:09 -04001// Copyright 2017 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef FPDFSDK_JAVASCRIPT_CJS_FONT_H_
8#define FPDFSDK_JAVASCRIPT_CJS_FONT_H_
9
10#include "fpdfsdk/javascript/JS_Define.h"
11
12class CJS_Font : public CJS_Object {
13 public:
14 explicit CJS_Font(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
15 ~CJS_Font() override {}
16
17 DECLARE_JS_CLASS_BASE_PART();
18 DECLARE_JS_CLASS_CONST_PART();
19};
20
21#endif // FPDFSDK_JAVASCRIPT_CJS_FONT_H_