summaryrefslogtreecommitdiffstats
path: root/collection.cpp
blob: 4da55a225e5832051e9f3a09b1a0bc75cae20842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "collection.h"

int Collection::get_size(void) const
{
    return this->size_;
}

void Collection::iterate(void (*callback)(int *))
{ /* can't really do anything at this point */
}

bool Collection::contains(int n) const
{
    return false;
}