KrisLibrary  1.0.0
BlockPrinter.h
1 #ifndef MATH_BLOCK_PRINTER_H
2 #define MATH_BLOCK_PRINTER_H
3 
4 #include "BlockVector.h"
5 #include "BlockTridiagonalMatrix.h"
6 
7 namespace Math {
8 
10 {
11  BlockPrinter(const BlockVector& v);
13  void Print(std::ostream& out) const;
14 
15  const BlockVector* v;
16  const BlockTridiagonalMatrix* m;
17  char delim,bracket;
18 };
19 
20 std::ostream& operator <<(std::ostream& out,const BlockPrinter& bp);
21 
22 } //namespace Math
23 
24 #endif
Definition: BlockPrinter.h:9
Definition: BlockTridiagonalMatrix.h:9
Definition: BlockVector.h:9
Contains all definitions in the Math package.
Definition: WorkspaceBound.h:12