PSCF v1.1
Byte.h
1#ifndef UTIL_BYTE_H
2#define UTIL_BYTE_H
3
4/*
5* Util Package - C++ Utilities for Scientific Computation
6*
7* Copyright 2010 - 2017, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <util/global.h>
12
13namespace Util
14{
15
19 typedef unsigned char Byte;
20
21}
22#endif
File containing preprocessor macros for error handling.
Utility classes for scientific computation.
Definition: accumulators.mod:1
unsigned char Byte
Define a "Byte" type.
Definition: Byte.h:19