/* * KeySet.hpp * * Created on: Oct 20, 2011 * Author: heber */ #ifndef KEYSET_HPP_ #define KEYSET_HPP_ #ifdef HAVE_CONFIG_H #include #endif #include class KeySet : public std::set { public: KeySet(); ~KeySet(); bool operator<(const KeySet &a) const; bool ScanBufferIntoKeySet(char *buffer); }; typedef std::pair KeySetTestPair; #endif /* KEYSET_HPP_ */