Back

// Matt Kaliszewksi
// COMP411 - Lab 06
// October 16, 2002
// Link.h

#ifndef LINK_H
#define LINK_H

#include <iostream>
#include "User.h"
using namespace std;

//////////////////////////////////// LINK CLASS ////////////////////////////////////

class Link {
public:
       Link();                     // Default constructor
       Link *next;              // Pointer to the next user
       User *user;              // The current user
};

#endif

Back