From 469bbcf0701e1eb8a6670c23145b0da87357e178 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 25 Mar 2012 20:00:08 +0000 Subject: Code is all reorganized. We're about ready to release. I should write up a little explenation of the arrangement. --- src/set.h | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/set.h (limited to 'src/set.h') diff --git a/src/set.h b/src/set.h deleted file mode 100644 index ac8dbd5..0000000 --- a/src/set.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (C) 2007-2011 Xagasoft, All rights reserved. - * - * This file is part of the libbu++ library and is released under the - * terms of the license contained in the file LICENSE. - */ - -#ifndef BU_SET_H -#define BU_SET_H - -#include -#include -#include -#include -#include -#include -#include "bu/exceptionbase.h" -#include "bu/list.h" -#include "bu/archive.h" - -#define bitsToBytes( n ) (n/32+(n%32>0 ? 1 : 0)) - -namespace Bu -{ - subExceptionDecl( SetException ) - - /** - *@todo Set should be rewritten, possibly using a b-tree as ordered storage - * in the backend. It should use either a b-tree or array for storage and - * allow set intersections, unions, etc. - *@param key (typename) The datatype of the hashtable keys - *@param sizecalc (typename) Functor to compute new table size on rehash - *@param keyalloc (typename) Memory allocator for hashtable keys - *@param challoc (typename) Byte allocator for bitflags - *@ingroup Containers - */ - template - class Set - { - public: - }; -} - -#endif -- cgit v1.2.3