Vector.h 1.33 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
/* Do not edit this file. It was automatically generated. */
2
3
4
5
6

#ifndef HEADER_Vector
#define HEADER_Vector
/*
htop
Hisham Muhammad's avatar
Hisham Muhammad committed
7
(C) 2004-2010 Hisham H. Muhammad
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "Object.h"
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

#include "debug.h"
#include <assert.h>


#ifndef DEFAULT_SIZE
#define DEFAULT_SIZE -1
#endif

typedef struct Vector_ {
   Object **array;
27
   Object_Compare compare;
28
29
30
31
32
33
34
35
   int arraySize;
   int growthRate;
   int items;
   char* vectorType;
   bool owner;
} Vector;


36
Vector* Vector_new(char* vectorType_, bool owner, int size, Object_Compare compare);
37
38
39

void Vector_delete(Vector* this);

40
41
#ifdef DEBUG

Hisham Muhammad's avatar
Hisham Muhammad committed
42
43
int Vector_count(Vector* this);

44
45
#endif

46
47
48
49
void Vector_prune(Vector* this);

void Vector_sort(Vector* this);

Hisham Muhammad's avatar
Hisham Muhammad committed
50
void Vector_insert(Vector* this, int idx, void* data_);
51

Hisham Muhammad's avatar
Hisham Muhammad committed
52
Object* Vector_take(Vector* this, int idx);
53

Hisham Muhammad's avatar
Hisham Muhammad committed
54
Object* Vector_remove(Vector* this, int idx);
55

Hisham Muhammad's avatar
Hisham Muhammad committed
56
void Vector_moveUp(Vector* this, int idx);
57

Hisham Muhammad's avatar
Hisham Muhammad committed
58
void Vector_moveDown(Vector* this, int idx);
59

Hisham Muhammad's avatar
Hisham Muhammad committed
60
void Vector_set(Vector* this, int idx, void* data_);
61

Hisham Muhammad's avatar
Hisham Muhammad committed
62
extern Object* Vector_get(Vector* this, int idx);
63

64
extern int Vector_size(Vector* this);
65

66
67
68
/*

*/
69
70
71

void Vector_add(Vector* this, void* data_);

72
extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
73
74

#endif