/* Stuff.hpp Declaration file for the class Stuff. John Doe jdoe@cs.kent.edu */ #ifndef INCLUDED_STUFF_HPP #define INCLUDED_STUFF_HPP #include /** Stores information about our stuff @author John Doe jdoe@cs.kent.edu */ class Stuff { public: /** Searches the items that we already have to see if we already have this item. If we have multiple copies of the item, then that is the same as if we had one copy of the item. @param item Number of an item we are seeing if we have @return Whether we have the item */ bool doIhaveitalready(int item) const; private: std::list items; }; #endif