testfile.h


#ifndef TESTFILE_H
#define TESTFILE_H

#include "anyfile.h"

class TestFile
{
  public:
    TestFile() { x = 0; }
    ~TestFile() {}

    int
    getX() { return( x ); }

  private:
    int x;
};

#endif  // End of testfile.h