Panzer Version of the Day
Loading...
Searching...
No Matches
Panzer_GlobalDataAcceptor.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_GLOBAL_DATA_ACCEPTOR_HPP
12#define PANZER_GLOBAL_DATA_ACCEPTOR_HPP
13
14#include "Teuchos_RCP.hpp"
15
16namespace panzer {
17
18 struct GlobalData;
19
22
23 public:
24
26
27 virtual void setGlobalData(const Teuchos::RCP<panzer::GlobalData>& gd) = 0;
28
29 virtual Teuchos::RCP<panzer::GlobalData> getGlobalData() const = 0;
30
31 };
32
33}
34
35#endif
Interface for accessing the GlobalData object.
virtual Teuchos::RCP< panzer::GlobalData > getGlobalData() const =0
virtual void setGlobalData(const Teuchos::RCP< panzer::GlobalData > &gd)=0