// Copyright (c) 2003 Nick Mathewson.  See LICENSE for licensing information.
// $Id: vec.cpp 958 2003-12-11 11:07:51Z nickm $
#include "vec.h"
#include <functional>

template<class C> 
vec<C>::vec(int n) : rep(n) 
{}

template class vec<int>;
template class vec<double>;



