#ifndef USERROOT
#define USERROOT
class userroot
{
   public:
      apstring djname;
      entry* head;
      int djpoint_10;
      int AAA_count;
      int AA_count;
      int A_count;
      int B_count;
      int C_count;
      int D_count;
      int E_count;
      int F_count;
      int perfect;
      int combo;
      int clear;
      int play;

      userroot();

      void sort();
         //sorts a player's entries by title, in ascending order
      inline bool operator<(const userroot &rhs){return djpoint_10>rhs.djpoint_10;};
};
#include "userroot.cpp"
#endif