// This may look like C code, but it is really -*- C++ -*-
//
//  ${project}  --  Copyright (c) University of Aizu 1994
//
//

// Wrappers protect against including this file more than once

#ifndef Card_h
#define Card_h 1

#include <Index.h>

class Card : public Indexable {
public:
  virtual int execute(void) const = 0;
};

// End of wrapper
#endif
// End of file
