Out of the box under modern Linux, muses won't build;
when you use #include <vector> the vector object is
defined within the namespace std::. In order put the
vector class into the global name space you need to
use #include <vector.h> or ad
using namespace::std
- Oliver