start to track Daniel's version
[util-vserver.git] / ensc_vector / vector.hc
diff --git a/ensc_vector/vector.hc b/ensc_vector/vector.hc
deleted file mode 100644 (file)
index 9964a1a..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-// $Id: vector.hc 2113 2005-07-03 09:12:31Z ensc $    --*- c++ -*--
-
-// Copyright (C) 2002,2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
-//  
-// This program 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; version 2 of the License.
-//  
-// This program 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 this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//  
-
-static inline UNUSED void *
-Vector_begin(struct Vector *vec)
-{
-  return vec->data;
-}
-
-static inline UNUSED void *
-Vector_end(struct Vector *vec)
-{
-  return (char *)(vec->data) + (vec->count * vec->elem_size);
-}
-
-static inline UNUSED void const *
-Vector_begin_const(struct Vector const *vec)
-{
-  return vec->data;
-}
-
-static inline UNUSED void const *
-Vector_end_const(struct Vector const *vec)
-{
-  return (char *)(vec->data) + (vec->count * vec->elem_size);
-}
-
-static inline UNUSED size_t
-Vector_count(struct Vector const *vec)
-{
-  return vec->count;
-}
-
-static inline UNUSED void const *
-Vector_search_const(struct Vector const *vec, void const *key, int (*compar)(const void *, const void *))
-{
-  return Vector_search((struct Vector *)(vec), key, compar);
-}
-
-static inline UNUSED void const *
-Vector_searchSelfOrg_const(struct Vector const *vec, void const *key,
-                          int (*compare)(const void *, const void *),
-                          VectorSelfOrgMethod method)
-{
-  return Vector_searchSelfOrg((struct Vector *)(vec), key, compare, method);
-}
-
-static inline UNUSED void
-Vector_foreach_const(struct Vector const *vec, void (*func)(void const *, void *),
-                    void *data)
-{
-  Vector_foreach((struct Vector *)(vec),
-                (void (*)(void *, void *))(func),
-                data);
-}