MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
vh.cc File Reference
#include "mbconfig.h"
#include <cstring>
#include <cmath>
#include <iostream>
#include <iomanip>
#include "matvec3.h"
#include "submat.h"
Include dependency graph for vh.cc:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &out, const VectorHandler &VH)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const VectorHandler VH 
)

Definition at line 287 of file vh.cc.

References VectorHandler::iGetSize().

288 {
289  for (integer i = 1; i <= VH.iGetSize(); i++) {
290  out << std::setw(16) << VH(i) << std::endl;
291  }
292  return out;
293 }
virtual integer iGetSize(void) const =0
long int integer
Definition: colamd.c:51

Here is the call graph for this function: