author | Till Schneidereit <tschneidereit@gmail.com> |
Thu, 06 Sep 2012 17:43:22 +0200 | |
changeset 108068 | 2f83e74b38ff702f57ce22df899f531c9b252ec0 |
parent 96742 | f4157e8c410708d76703f19e4dfb61859bfe32d8 |
permissions | -rw-r--r-- |
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef __strset_h_ #define __strset_h_ struct StrSet { StrSet(); void add(const char* string); int contains(const char* string); bool IsEmpty() const { return 0 == numstrings; } char** strings; int numstrings; }; #endif /* __strset_h_ */