chombo-discharge
Loading...
Searching...
No Matches
CD_EBHelmholtzEBBCFactory.H
1/*
2 * SPDX-FileCopyrightText: 2021-2026 SINTEF Energy Research
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7/*
8 @file CD_EBHelmholtzEBBCFactory.H
9 @brief Declaration of a factory class for making boundary condition objects for EBHelmholtzOp
10 @author Robert Marskar
11*/
12
13#ifndef CD_EBHELMHOLTZEBBCFACTORY_H
14#define CD_EBHELMHOLTZEBBCFACTORY_H
15
16// Chombo includes
17#include <EBLevelGrid.H>
18
19// Our includes
20#include <CD_EBHelmholtzEBBC.H>
21#include <CD_NamespaceHeader.H>
22
27{
28public:
33
38
43
48 operator=(const EBHelmholtzEBBCFactory& a_other) = delete;
49
55 virtual RefCountedPtr<EBHelmholtzEBBC>
56 create() = 0;
57};
58
59#include <CD_NamespaceFooter.H>
60
61#endif
Factory class for making EBHelmholtzEBBCs.
Definition CD_EBHelmholtzEBBCFactory.H:27
EBHelmholtzEBBCFactory & operator=(const EBHelmholtzEBBCFactory &a_other)=delete
Disallowed - don't see why you would need it.
EBHelmholtzEBBCFactory(const EBHelmholtzEBBCFactory &a_other)=delete
Disallowed – don't see why you would need it.
virtual RefCountedPtr< EBHelmholtzEBBC > create()=0
Factory method which returns new BC object.
virtual ~EBHelmholtzEBBCFactory()
Destructor.
Definition CD_EBHelmholtzEBBCFactory.cpp:19
EBHelmholtzEBBCFactory()
Constructor.