https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Bool.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#include "Bool.h"
11
12template <>
13void
14dataStore(std::ostream & stream, Bool & v, void * context)
15{
16 dataStore(stream, v._value, context);
17}
18
19template <>
20void
21dataLoad(std::istream & stream, Bool & v, void * context)
22{
23 dataLoad(stream, v._value, context);
24}
void dataLoad(std::istream &stream, Bool &v, void *context)
Definition Bool.C:21
void dataStore(std::ostream &stream, Bool &v, void *context)
Definition Bool.C:14
const double v
A wrapper for the C++ boolean type which can be stored in vectors in the same way as other C++ types.
Definition Bool.h:19