IOSS 2.0
Loading...
Searching...
No Matches
Ioss_use_fmt.h
Go to the documentation of this file.
1// Copyright(C) 2024 National Technology & Engineering Solutions
2// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
3// NTESS, the U.S. Government retains certain rights in this software.
4//
5// See packages/seacas/LICENSE for details
6
7// This class should be included if you want to use the lib::fmt
8// output for any of the classes shown below:
9// * ZoneConnectivity
10// * Field
11// * BoundaryCondition
12#pragma once
13#include <fmt/ostream.h>
14
15#if FMT_VERSION >= 90000
16#include "Ioss_Field.h"
19
20namespace fmt {
21 template <> struct formatter<Ioss::ZoneConnectivity> : ostream_formatter
22 {
23 };
24
25 template <> struct formatter<Ioss::Field> : ostream_formatter
26 {
27 };
28
29 template <> struct formatter<Ioss::BoundaryCondition> : ostream_formatter
30 {
31 };
32} // namespace fmt
33#endif
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40