/* * CSet.hh * * Copyright 2014-2018 D. Mitch Bailey cvc at shuharisystem dot com * * This file is part of cvc. * * cvc is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * cvc is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with cvc. If not, see . * * You can download cvc from https://github.com/d-m-bailey/cvc.git */ #ifndef CSET_HH_ #define CSET_HH_ #include "Cvc.hh" class CSet : public unordered_set { public: bool Intersects(CSet & theOtherSet); }; #endif /* CSET_HH_ */