![]() |
Reference documentation for deal.II version 8.1.0
|
#include <operator.h>
Public Member Functions | |
virtual | ~OutputOperator () |
void | initialize_stream (std::ostream &stream) |
OutputOperator< VECTOR > & | operator<< (unsigned int step) |
virtual OutputOperator< VECTOR > & | operator<< (const NamedData< VECTOR * > &vectors) |
![]() | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") | |
DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Protected Attributes | |
unsigned int | step |
Private Member Functions | |
OutputOperator (const OutputOperator< VECTOR > &) | |
Private Attributes | |
std::ostream * | os |
An unary operator base class, intended to output the vectors in NamedData in each step of an iteration.
Definition at line 113 of file operator.h.
|
virtual |
Empty virtual destructor.
Definition at line 46 of file operator.templates.h.
void Algorithms::OutputOperator< VECTOR >::initialize_stream | ( | std::ostream & | stream | ) |
Set the stream os
to which data is written. If no stream is selected with this function, data goes to deallog
.
Definition at line 56 of file operator.templates.h.
OutputOperator< VECTOR > & Algorithms::OutputOperator< VECTOR >::operator<< | ( | unsigned int | step | ) |
Set the current step.
Definition at line 148 of file operator.h.
|
virtual |
Output all the vectors in NamedData.
Reimplemented in Algorithms::DoFOutputOperator< VECTOR, dim, spacedim >.
Definition at line 63 of file operator.templates.h.