-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathFieldSpecificationABC.cpp
More file actions
36 lines (30 loc) · 1.1 KB
/
Copy pathFieldSpecificationABC.cpp
File metadata and controls
36 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* ------------------------------------------------------------------------------------------------------------
* SPDX-License-Identifier: LGPL-2.1-only
*
* Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
* Copyright (c) 2018-2024 TotalEnergies
* Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
* Copyright (c) 2023-2024 Chevron
* Copyright (c) 2019- GEOS/GEOSX Contributors
* All rights reserved
*
* See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
* ------------------------------------------------------------------------------------------------------------
*/
#include "FieldSpecificationABC.hpp"
namespace geos
{
using namespace dataRepository;
FieldSpecificationABC::FieldSpecificationABC( string const & name, Group * parent ):
Group( name, parent )
{}
FieldSpecificationABC::~FieldSpecificationABC()
{}
FieldSpecificationABC::CatalogInterface::CatalogType &
FieldSpecificationABC::getCatalog()
{
static FieldSpecificationABC::CatalogInterface::CatalogType catalog;
return catalog;
}
}