summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2013-06-24 09:11:37 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2013-06-24 09:11:37 +0000
commit2eec8af74453f6a52c6cba1ff56bea80e4196e67 (patch)
tree1a65cbc39a95f3253b14385e7a21345204499838 /Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h
parentf2587f58840bb84b1c9227177ed95997aa92a357 (diff)
dvisvfm 1.3 (potracelib now in libs/potrace)
git-svn-id: svn://tug.org/texlive/trunk@30888 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h')
-rw-r--r--Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h b/Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h
deleted file mode 100644
index 3170d850256..00000000000
--- a/Build/source/texk/dvisvgm/dvisvgm-1.2.2/src/FontEncoding.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*************************************************************************
-** FontEncoding.h **
-** **
-** This file is part of dvisvgm -- the DVI to SVG converter **
-** Copyright (C) 2005-2013 Martin Gieseking <martin.gieseking@uos.de> **
-** **
-** This program is free software; you can redistribute it and/or **
-** modify it under the terms of the GNU General Public License as **
-** published by the Free Software Foundation; either version 3 of **
-** the License, or (at your option) any later version. **
-** **
-** This program is distributed in the hope that it will be useful, but **
-** WITHOUT ANY WARRANTY; without even the implied warranty of **
-** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the **
-** GNU General Public License for more details. **
-** **
-** You should have received a copy of the GNU General Public License **
-** along with this program; if not, see <http://www.gnu.org/licenses/>. **
-*************************************************************************/
-
-#ifndef FONTENCODING_H
-#define FONTENCODING_H
-
-#include <istream>
-#include <map>
-#include <string>
-#include <vector>
-#include "types.h"
-
-
-class FontEncoding
-{
- public:
- FontEncoding (const std::string &name);
- void read ();
- void read (std::istream &is);
- int size () const {return _table.size();}
- std::string name () const {return _encname;}
- const char* getEntry (int c) const;
- const char* path () const;
- static FontEncoding* encoding (std::string fontname);
-
- private:
- std::string _encname;
- std::vector<std::string> _table;
-};
-
-#endif