It builds again.
[libdcp.git] / test / test.h
index 31b4bf0ab6122b270567ac756509820a5767142d..bc6baccdd43d1be6eba6112979aefae5f53e4c4c 100644 (file)
 */
 
 extern std::string test_corpus;
-
-class TestFile
-{
-public:
-       TestFile (boost::filesystem::path file);
-       ~TestFile ();
-       
-       uint8_t* data () const {
-               return _data;
-       }
-
-       int64_t size () const {
-               return _size;
-       }
-
-private:
-       uint8_t* _data;
-       int64_t _size;
-};