1
      2
      3
<doc  4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
#ifndef NIM_MOVE_H
#define NIM_MOVE_H

class NimMove {
   public:
      NimMove();
      NimMove(unsigned int heap_, unsigned int count_);
      unsigned int get_heap() const;
      unsigned int get_count() const;

   private:
      unsigned int heap;
      unsigned int count;
};

#endif