/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/Map.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-09 18:20:58 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130909182058-cqgpb84tlbob82gj
* Made the includation graphs look sane.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 * @file
32
32
 */
33
33
 
34
 
#include "SimpleTypeSystem.h"
 
34
#include "baseobject.h"
35
35
#include <stdbool.h>
36
36
 
37
37
/** @brief
98
98
 * Frees a SMapItem.
99
99
 * 
100
100
 * @param self the item to be freed.
 
101
 * @param free_key The function to be used to free the key.
 
102
 * @param free_value The function to be used to free the value.
101
103
 */
102
104
void s_map_item_free (SMapItem * self, MethodFunc free_key,
103
105
                                       MethodFunc free_value);
137
139
 * @param key the key that is used to
138
140
 *
139
141
 * @todo
140
 
 *  make it return false on failiour, or some other nastiness.
 
142
 *  make it return false on failure, or some other nastiness.
141
143
 */
142
144
void s_map_add (SMap * self ,void * key, void * value);
143
145