summaryrefslogtreecommitdiff
path: root/src/stl_binary_reader.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-01-23 14:57:27 +0100
committerCarl Hetherington <cth@carlh.net>2020-01-23 20:20:04 +0000
commit24bf4ff9ca5ae9a994eb4596549ff46a8ad245f5 (patch)
treebbd3e7d413ec546e9e934034406480a53a84ef53 /src/stl_binary_reader.h
parentf7a5fd701510264ab618d0d566a38913527327a8 (diff)
Introduce InputReader to read data from the file and do low-level parsing.
Backported from 2089fb99e5b289a24ad8aade07a20e0659905143 in master.
Diffstat (limited to 'src/stl_binary_reader.h')
-rw-r--r--src/stl_binary_reader.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/stl_binary_reader.h b/src/stl_binary_reader.h
index 240b9e7..4c8f6e1 100644
--- a/src/stl_binary_reader.h
+++ b/src/stl_binary_reader.h
@@ -33,7 +33,6 @@ class STLBinaryReader : public Reader
{
public:
STLBinaryReader (std::istream &);
- ~STLBinaryReader ();
std::map<std::string, std::string> metadata () const;
@@ -68,12 +67,7 @@ public:
std::string editor_contact_details;
private:
- std::string get_string (int, int) const;
- int get_int (int, int) const;
- Time get_timecode (int) const;
-
STLBinaryTables _tables;
- unsigned char* _buffer;
};
}