tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

vmtx.h (508B)


      1 // Copyright (c) 2011-2017 The OTS 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 #ifndef OTS_VMTX_H_
      6 #define OTS_VMTX_H_
      7 
      8 #include "metrics.h"
      9 #include "vhea.h"
     10 #include "ots.h"
     11 
     12 namespace ots {
     13 
     14 struct OpenTypeVMTX : public OpenTypeMetricsTable {
     15 public:
     16  explicit OpenTypeVMTX(Font *font, uint32_t tag)
     17      : OpenTypeMetricsTable(font, tag, tag, OTS_TAG_VHEA) { }
     18 };
     19 
     20 }  // namespace ots
     21 
     22 #endif  // OTS_VMTX_H_