/*
        savefile.h

        V1.00 - 290197  Kimmo Teräväinen
        -----   ------  ----------------
        V0.01   290197  Started.
        V0.10   300197  Tested. Crypt not done.

*/
#ifndef DC1_POKER_SAVEFILE
#define DC1_POKER_SAVEFILE

class cSaveFile {
  const char *name;
  int   points;
public:
  cSaveFile(const char *Name) : name(Name) {}

  int Points() const { return points; }
  int Points(int po) { return points=po; }

  void Crypt(char *);
  int Load();
  int Save();

};

#endif