#ifndef DYNARRAY_H
#define DYNARRAY_H
#include Criteria.h
#include defs.h
class CriteriaArray
{
public:
CriteriaArray();
~CriteriaArray();
voidadd(Criteria*);
int getSize();
Criteria* get(int);
voidprint();
private:
Criteria* elements[MAX_SIZE];
int size;
};
#endif

![[SOLVED] CS #ifndef DYNARRAY_H](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Payroll calculation program-Python](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.