Introduce InputReader to read data from the file and do low-level parsing.
[libsub.git] / src / stl_binary_reader.h
index 240b9e73d751eadf114c8741b1123f5d581923be..4c8f6e114a552abe7c2328d356e4de25c54be52b 100644 (file)
@@ -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;
 };
 
 }