CS计算机代考程序代写 #ifndef DYNARRAY_H

#ifndef DYNARRAY_H
#define DYNARRAY_H

#include “Criteria.h”
#include “defs.h”

class CriteriaArray
{
public:
CriteriaArray();
~CriteriaArray();
void add(Criteria*);
int getSize();
Criteria* get(int);
void print();

private:
Criteria* elements[MAX_SIZE];
int size;
};

#endif

Leave a Reply

Your email address will not be published. Required fields are marked *