1*7b3ff069SJeremy L Thompson // Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors. 2*7b3ff069SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3*7b3ff069SJeremy L Thompson // 4*7b3ff069SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 5*7b3ff069SJeremy L Thompson // 6*7b3ff069SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 7*7b3ff069SJeremy L Thompson #pragma once 8*7b3ff069SJeremy L Thompson 9*7b3ff069SJeremy L Thompson #include <ceed/types.h> 10*7b3ff069SJeremy L Thompson 11*7b3ff069SJeremy L Thompson /// A structure used to pass additional data 12*7b3ff069SJeremy L Thompson struct BuildContext { 13*7b3ff069SJeremy L Thompson CeedInt dim, space_dim; 14*7b3ff069SJeremy L Thompson }; 15