Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
dunecore
dunecore
DuneInterface
Tool
IndexMapTool.h
Go to the documentation of this file.
1
// IndexMapTool.h
2
3
// David Adams
4
// June 2018
5
//
6
// Interface for tools that map one index to another, e.g.
7
// online to offline channel or vice versa.
8
9
#ifndef IndexMapTool_H
10
#define IndexMapTool_H
11
12
class
IndexMapTool
{
13
14
public
:
15
16
using
Index
=
unsigned
int
;
17
18
static
Index
badIndex
() {
return
-1; }
19
20
virtual
~IndexMapTool
() =
default
;
21
22
virtual
Index
get
(
Index
idx)
const
=0;
23
24
};
25
26
#endif
IndexMapTool
Definition:
IndexMapTool.h:12
IndexMapTool::~IndexMapTool
virtual ~IndexMapTool()=default
keras_to_tensorflow.int
int
Definition:
keras_to_tensorflow.py:69
IndexMapTool::Index
unsigned int Index
Definition:
IndexMapTool.h:16
IndexMapTool::badIndex
static Index badIndex()
Definition:
IndexMapTool.h:18
Generated by
1.8.11