00001 /* 00002 00003 Copyright (c) 2005-2008, Simon Howard 00004 00005 Permission to use, copy, modify, and/or distribute this software 00006 for any purpose with or without fee is hereby granted, provided 00007 that the above copyright notice and this permission notice appear 00008 in all copies. 00009 00010 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 00011 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 00012 WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 00013 AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR 00014 CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 00015 LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 00016 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 00017 CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 00018 00019 */ 00020 00021 #ifndef LIBCALG_H 00022 #define LIBCALG_H 00023 00024 #ifdef __cpluscplus 00025 extern "C" { 00026 #endif /*__cplusplus */ 00027 00028 #include <CxxUtils/libcalg/compare-int.h> 00029 #include <CxxUtils/libcalg/compare-pointer.h> 00030 #include <CxxUtils/libcalg/compare-string.h> 00031 00032 #include <CxxUtils/libcalg/hash-int.h> 00033 #include <CxxUtils/libcalg/hash-pointer.h> 00034 #include <CxxUtils/libcalg/hash-string.h> 00035 00036 #include <CxxUtils/libcalg/arraylist.h> 00037 #include <CxxUtils/libcalg/avl-tree.h> 00038 #include <CxxUtils/libcalg/binary-heap.h> 00039 #include <CxxUtils/libcalg/binomial-heap.h> 00040 #include <CxxUtils/libcalg/bloom-filter.h> 00041 #include <CxxUtils/libcalg/hash-table.h> 00042 #include <CxxUtils/libcalg/list.h> 00043 #include <CxxUtils/libcalg/queue.h> 00044 #include <CxxUtils/libcalg/set.h> 00045 #include <CxxUtils/libcalg/slist.h> 00046 #include <CxxUtils/libcalg/trie.h> 00047 00048 #ifdef __cpluscplus 00049 } 00050 #endif /*__cplusplus */ 00051 00052 #endif /* #ifndef LIBCALG_H */ 00053 00054