Panzer Version of the Day
Loading...
Searching...
No Matches
Panzer_BCStrategy_Factory_Composite.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_BCSTRATEGY_FACTORY_COMPOSITE_DECL_HPP
12#define PANZER_BCSTRATEGY_FACTORY_COMPOSITE_DECL_HPP
13
15#include "Teuchos_RCP.hpp"
16#include <vector>
17
18namespace panzer {
19
21
22 public:
23
24 BCFactoryComposite(const std::vector<Teuchos::RCP<panzer::BCStrategyFactory> >& factories);
25
26 Teuchos::RCP<panzer::BCStrategy_TemplateManager<panzer::Traits> >
27 buildBCStrategy(const panzer::BC& bc, const Teuchos::RCP<panzer::GlobalData>& global_data) const;
28
29 private:
30
31 std::vector<Teuchos::RCP<panzer::BCStrategyFactory> > m_bc_strategy_factories;
32
33 };
34
35}
36
37#endif
Stores input information for a boundary condition.
Definition Panzer_BC.hpp:48
Teuchos::RCP< panzer::BCStrategy_TemplateManager< panzer::Traits > > buildBCStrategy(const panzer::BC &bc, const Teuchos::RCP< panzer::GlobalData > &global_data) const
std::vector< Teuchos::RCP< panzer::BCStrategyFactory > > m_bc_strategy_factories
Interface for constructing a BCStrategy_TemplateManager.