// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. // // SPDX-License-Identifier: BSD-2-Clause // // This file is part of CEED: http://github.com/ceed #include #include static bool register_all_called; #define MACRO(name) CEED_INTERN int name(void); #include "../gallery/ceed-gallery-list.h" #undef MACRO /** @brief Register the gallery of preconfigured QFunctions. This is called automatically by CeedQFunctionCreateInteriorByName() and thus normally need not be called by users. Users can call CeedQFunctionRegister() to register additional backends. @return An error code: 0 - success, otherwise - failure @sa CeedQFunctionRegister() @ref User **/ int CeedQFunctionRegisterAll() { if (register_all_called) return 0; register_all_called = true; CeedDebugEnv256(1, "\n---------- Registering Gallery QFunctions ----------\n"); #define MACRO(name) CeedChk(name()); #include "../gallery/ceed-gallery-list.h" #undef MACRO return CEED_ERROR_SUCCESS; }