/* EINA - EFL data type library * Copyright (C) 2008 Jorge Luis Zapata Muga, Cedric Bail * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; * if not, see . */ #ifndef EINA_H_ #define EINA_H_ /** * @mainpage Eina * @author Jorge Luis Zapata Muga * @date 2008 * * @section intro_sec Introduction * * The Eina library is a library that implemente an API for data types * in an efficient way. It also provides some useful tools like * opengin shared libraries and errors management. * * This library is cross-platform and can be compiled and used on * Linux and Windows (XP and CE). * * The data types that are available are * @li hash table * @li list * @li string share * * This document describes each data type by providing the algorithms * used in the implementation, the performance, a short tutorial and * the API. * * @section eina_data_types_sec Eina Data Types * * @subsection hashtable Hash Table * * give a small description here : what it is for, what it does * , etc... * * To look at documentation of our hash tables, follow the link @ref * Eina_Hash_Group. * * @todo add debug function * @todo add magic function * @todo add other todo items :) */ #ifdef __cplusplus extern "C" { #endif #include "eina_types.h" #include "eina_f16p16.h" #include "eina_rectangle.h" #include "eina_inlist.h" #include "eina_file.h" #include "eina_list.h" #include "eina_hash.h" #include "eina_lalloc.h" #include "eina_module.h" #include "eina_mempool.h" #include "eina_error.h" #include "eina_array.h" #include "eina_stringshare.h" #include "eina_magic.h" #include "eina_counter.h" EAPI int eina_init(void); EAPI int eina_shutdown(void); #ifdef __cplusplus } #endif #endif /* EINA_H */