Data Structures | Typedefs | Functions

contrib/maloc/src/vsys/maloc/vset.h File Reference

Class Vset: a dynamic set object. More...

#include <maloc/maloc_base.h>
#include <maloc/vnm.h>
#include <maloc/vmem.h>
Include dependency graph for vset.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  Vset
 Class Vset: Definition. More...

Typedefs

typedef struct Vset Vset
 Class Vset: Definition.

Functions

VEXTERNC int Vset_num (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_access (Vset *thee, int i)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_create (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_first (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_last (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_next (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_prev (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_peekFirst (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC char * Vset_peekLast (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC void Vset_destroy (Vset *thee)
 Class Vset: Inlineable method (vset.c)
VEXTERNC VsetVset_ctor (Vmem *vmem, const char *tname, int tsize, int tmaxNum, int ioKey)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_dtor (Vset **thee)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC char * Vset_createLast (Vset *thee)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_destroyLast (Vset *thee)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_initData (Vset *thee)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_reset (Vset *thee)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_check (Vset *thee, int *tnum, int *tsize, int *tVecUse, int *tVecMal, int *tVecOhd)
 Class Vset: Non-Inlineable method (vset.c)
VEXTERNC void Vset_memChk (Vset *thee)
 Class Vset: Non-Inlineable method (vset.c)

Detailed Description

Class Vset: a dynamic set object.

Version:
Id:
vset.h,v 1.13 2008/02/05 00:11:34 fetk Exp
Author:
Michael Holst
Attention:
 *
 * MALOC = < Minimal Abstraction Layer for Object-oriented C >
 * Copyright (C) 1994--2008 Michael Holst
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * 
 *  

Definition in file vset.h.