class absEmpty extends absVector {
int size;
int increment;
int capacity;
absEmpty (int S, int I, int C) { size=S; increment=I; capacity=C; }
}