/* $Header: /CVSROOT/tinolib/old/tree.h,v 1.1 2011-02-04 18:27:29 tino Exp $ * * Generic Data Tree * * See iter.h for more information * * This is a gerneric data tree implementation in that the * representation is hidden from the caller. * * Currently there only is "ctree", which means, a character based * tree. This is for storing unique strings (or data) associated with * some pointer. Note that the tree itself does not store the given * string (or whatever) in a usable form. * * Copyright (C)2008 Valentin Hilbig * * This is release early code. Use at own risk. * * 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; either version 2 of the * License, or (at your option) any later version. * * 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., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. * * $Log: tree.h,v $ * Revision 1.1 2011-02-04 18:27:29 tino * stubs added * */ #ifndef tino_INC_tree_h #define tino_INC_tree_h #include "iter.h" #endif