25#include "proxyVector.hpp"
30template class ProxyVector<int, true>;
31template class ProxyVector<long, true>;
32template class ProxyVector<double, true>;
34template class ProxyVector<int, false>;
35template class ProxyVector<long, false>;
36template class ProxyVector<double, false>;
38template class ProxyVector<const int, true>;
39template class ProxyVector<const long, true>;
40template class ProxyVector<const double, true>;
42template class ProxyVector<const int, false>;
43template class ProxyVector<const long, false>;
44template class ProxyVector<const double, false>;