1 /* 2 * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef INDEXED_ATTRIBUTE_OWNER_H 6 #define INDEXED_ATTRIBUTE_OWNER_H 7 8 9 #include <SupportDefs.h> 10 11 12 class IndexedAttributeOwner { 13 public: 14 virtual ~IndexedAttributeOwner(); 15 16 virtual void UnsetIndexCookie(void* attributeCookie) = 0; 17 }; 18 19 20 #endif // INDEXED_ATTRIBUTE_OWNER_H 21