2006-06-06 20:28:42 +00:00
|
|
|
/* Do not edit this file. It was automatically generated. */
|
2006-05-30 13:45:40 +00:00
|
|
|
|
|
|
|
#ifndef HEADER_Vector
|
|
|
|
#define HEADER_Vector
|
|
|
|
/*
|
|
|
|
htop
|
|
|
|
(C) 2004-2006 Hisham H. Muhammad
|
|
|
|
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 void(*Vector_procedure)(void*);
|
|
|
|
|
|
|
|
typedef struct Vector_ {
|
|
|
|
Object **array;
|
2006-07-11 06:13:32 +00:00
|
|
|
Object_Compare compare;
|
2006-05-30 13:45:40 +00:00
|
|
|
int arraySize;
|
|
|
|
int growthRate;
|
|
|
|
int items;
|
|
|
|
char* vectorType;
|
|
|
|
bool owner;
|
|
|
|
} Vector;
|
|
|
|
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
Vector* Vector_new(char* vectorType_, bool owner, int size, Object_Compare compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
|
|
|
void Vector_delete(Vector* this);
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2006-11-12 21:52:14 +00:00
|
|
|
int Vector_count(Vector* this);
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
void Vector_prune(Vector* this);
|
|
|
|
|
|
|
|
void Vector_sort(Vector* this);
|
|
|
|
|
|
|
|
void Vector_insert(Vector* this, int index, void* data_);
|
|
|
|
|
|
|
|
Object* Vector_take(Vector* this, int index);
|
|
|
|
|
|
|
|
Object* Vector_remove(Vector* this, int index);
|
|
|
|
|
|
|
|
void Vector_moveUp(Vector* this, int index);
|
|
|
|
|
|
|
|
void Vector_moveDown(Vector* this, int index);
|
|
|
|
|
|
|
|
void Vector_set(Vector* this, int index, void* data_);
|
|
|
|
|
2007-08-10 05:59:36 +00:00
|
|
|
extern Object* Vector_get(Vector* this, int index);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2007-08-10 05:59:36 +00:00
|
|
|
extern int Vector_size(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
2006-05-30 13:45:40 +00:00
|
|
|
|
|
|
|
void Vector_add(Vector* this, void* data_);
|
|
|
|
|
2007-08-10 05:59:36 +00:00
|
|
|
extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
2006-05-30 13:45:40 +00:00
|
|
|
|
|
|
|
#endif
|