NIST Biometric Evaluation Framework
Software components for biometric technology evaluations
be_process.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
11#ifndef __BE_PROCESS_H__
12#define __BE_PROCESS_H__
13
14#include <map>
15#include <memory>
16#include <string>
17
18namespace BiometricEvaluation
19{
27 namespace Process
28 {
31 std::map<std::string, std::shared_ptr<void>>;
32 }
33}
34#endif /* __BE_PROCESS_H__ */
std::map< std::string, std::shared_ptr< void > > ParameterList
Convenience alias for parameter lists to child routines.
Definition: be_process.h:31
This software was developed at the National Institute of Standards and Technology (NIST) by employees...