Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ALBANY_ABSTRACTNODEFIELDCONT_HPP
00009 #define ALBANY_ABSTRACTNODEFIELDCONT_HPP
00010
00011 #include "Teuchos_RCP.hpp"
00012 #include "Epetra_Map.h"
00013 #include "Epetra_Vector.h"
00014
00015
00016
00017 namespace Albany {
00018
00024 class AbstractNodeFieldContainer {
00025
00026 public:
00027
00028 AbstractNodeFieldContainer(){}
00029 virtual ~AbstractNodeFieldContainer(){}
00030
00031 virtual void saveField(const Teuchos::RCP<const Epetra_Vector>& block_mv, int offset, int blocksize = -1) = 0;
00032
00033 };
00034
00035 typedef std::map<std::string, Teuchos::RCP<Albany::AbstractNodeFieldContainer> > NodeFieldContainer;
00036
00037 }
00038
00039 #endif // ALBANY_ABSTRACTNODEFIELDCONT_HPP