#include <vector>
#include <string>
#include <iostream>
#include "utilities/CCopasiMessage.h"
#include "utilities/utility.h"
#include "report/CCopasiObjectName.h"
#include "report/CCopasiContainer.h"
Go to the source code of this file.
template<class CType >
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const CCopasiVector< CType > & |
d |
|
) |
| |
ostream operator
- Parameters
-
- Returns
- std::ostream & os
Definition at line 870 of file CCopasiVector.h.
872 os <<
" +++Vektor; size: " << d.
size() << std::endl;
876 for (i = 0; i < d.
size(); i++)
877 os <<
" " << *(d[i]);
880 os <<
" empty" << std::endl;
882 os <<
" ---Vektor" << std::endl;
virtual size_t size() const