NIST Biometric Evaluation Framework
Software components for biometric technology evaluations
be_io.h
Go to the documentation of this file.
1/******************************************************************************
2 * This software was developed at the National Institute of Standards and
3 * Technology (NIST) by employees of the Federal Government in the course
4 * of their official duties. Pursuant to title 17 Section 105 of the
5 * United States Code, this software is not subject to copyright protection
6 * and is in the public domain. NIST assumes no responsibility whatsoever for
7 * its use by other parties, and makes no guarantees, expressed or implied,
8 * about its quality, reliability, or any other characteristic.
9 ******************************************************************************/
10#ifndef __BE_IO_H__
11#define __BE_IO_H__
12
13#include <cstdint>
14
16
17/*
18 * This file contains items that are used within the Biometric Evaluation
19 * IO framework.
20 */
21namespace BiometricEvaluation {
22
31 namespace IO
32 {
34 enum class Mode
35 {
41 ReadWrite = 0,
42
48 ReadOnly = 1
49 };
50 }
51}
52
55 BE_IO_Mode_EnumToStringMap);
56
57#endif /* __BE_IO_H__ */
BE_FRAMEWORK_ENUMERATION_DECLARATIONS(BiometricEvaluation::IO::Mode, BE_IO_Mode_EnumToStringMap)
Mode
Accessibility of object.
Definition: be_io.h:35
@ ReadOnly
Constant indicating the state of an object that manages some underlying file is accessible for readin...
@ ReadWrite
Constant indicating the state of an object that manages some underlying file is accessible for readin...
This software was developed at the National Institute of Standards and Technology (NIST) by employees...