/* * $Id: vecpickio.cc,v 1.1.1.1 1999-04-09 17:58:59 ansari Exp $ * * Copyright (C) 1997 Todd Veldhuizen * All rights reserved. Please see for terms and * conditions of use. * * $Log: not supported by cvs2svn $ * Revision 1.2 1997/01/24 14:42:00 tveldhui * Periodic RCS update * */ #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