FRX SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
Darray.h
Go to the documentation of this file.
1//
2// (C) Copyright 2005-2024 by Graebert GmbH.
3//
4// Permission to use, copy, modify, and distribute this software in
5// object code form for any purpose and without fee is hereby granted,
6// provided that the above copyright notice appears in all copies and
7// that both that copyright notice and the limited warranty and
8// restricted rights notice below appear in all supporting
9// documentation.
10//
11// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
12// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
13// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
14// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
15// UNINTERRUPTED OR ERROR FREE.
16
17#pragma once
18
20{
21public:
22 Darray( Darray const & ) ;
23 Darray(int) ;
24 Darray(void * ) ;
25 Darray(void) ;
26 ~Darray(void) ;
27 Darray & operator=( Darray const & ) ;
28 int add(void * ) ;
29 int contains(void const * )const ;
30 int del(void * ) ;
31 int find(void const * ,int)const ;
32 int length(void) ;
33 int length(void)const ;
34 int merge( Darray const & ) ;
35 int merge(void * ) ;
36 //void * & operator[](int) ;
37 //void * operator[](int)const ;
38 // void __autoclassinit2(unsigned __int64) ;
39 void add( Darray const & ) ;
40 void add(int,void * ) ;
41 void del(int) ;
42 void fixAfterMemcopy(void * ) ;
43 void init(int) ;
44 void init(void) ;
45 void intersectWith( Darray const & ) ;
46 void resize(int) ;
47 void swap(int,int) ;
48
49private:
50 int findLength(void)const ;
51 void extendArray(int) ;
52
53};
void fixAfterMemcopy(void *)
void del(int)
void resize(int)
Darray(Darray const &)
void add(Darray const &)
void swap(int, int)
int length(void) const
int find(void const *, int) const
int merge(void *)
int add(void *)
void init(void)
int length(void)
void init(int)
Darray(int)
void add(int, void *)
int merge(Darray const &)
void intersectWith(Darray const &)
Darray(void *)
int contains(void const *) const
Darray(void)
Darray & operator=(Darray const &)
~Darray(void)
int del(void *)