/*
 * Instituto Superior de Engenharia do Porto
 *
 * Estruturas de Informação
 *
 * 2000/2001
 *
 * ------------------------------------------
 *
 * Classe de Vector de Inteiros
 *
 * vectorint.h
 *
 */


#ifndef NULL
#define NULL    0
#endif


class VectorInteiros
{
private:
	int *m_vector;
	int m_count;

public:
	VectorInteiros(int nCount);
	~VectorInteiros();
	
	bool escrever(int pos, int valor);
	int ler(int pos);
	int tamanho();
};

