Panzer  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Panzer_LinearObjContainer.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Panzer: A partial differential equation assembly
4 // engine for strongly coupled complex multiphysics systems
5 //
6 // Copyright 2011 NTESS and the Panzer contributors.
7 // SPDX-License-Identifier: BSD-3-Clause
8 // *****************************************************************************
9 // @HEADER
10 
11 #ifndef __Panzer_LinearObjContainer_hpp__
12 #define __Panzer_LinearObjContainer_hpp__
13 
14 #include "PanzerDiscFE_config.hpp"
15 
17 
18 #include "Teuchos_RCP.hpp"
19 #include "Teuchos_dyn_cast.hpp"
20 
21 namespace panzer {
22 
23 // **********************************************************************************************
24 // *********************** LINEAR OBJ CONTAINER *************************************************
25 // **********************************************************************************************
26 
28 public:
29  virtual ~LinearObjContainer() {}
30 
31  typedef enum { X=0x1, DxDt=0x2, F=0x4, Mat=0x8} Members;
32 
33  virtual void initialize() = 0;
34 };
35 
36 }
37 
38 #endif
virtual void initialize()=0