/* * $Id: vecpickio.cc,v 1.3 2003/12/11 03:44:22 julianc Exp $ * * Copyright (C) 1997 Todd Veldhuizen * All rights reserved. Please see for terms and * conditions of use. * */ #ifndef BZ_VECPICKIO_CC #define BZ_VECPICKIO_CC #ifndef BZ_VECPICK_H #error must be included via #endif // BZ_VECPICK_H BZ_NAMESPACE(blitz) template ostream& operator<<(ostream& os, const VectorPick& x) { Vector y(x.length()); y = x; os << y; return os; } BZ_NAMESPACE_END #endif // BZ_VECPICKIO_CC