WPOCT Software Developer's Kit (SDK)
SDK For using Wasatch Photonics OCT Spectrometers
FindIndex.h
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <map>
9 
10 using namespace std;
11 
12 typedef pair<DBL, I32> DI_Pair;
13 typedef pair<SGL, I32> DIF_Pair;
14 
15 /******************************************************************************/
16 // global function prototypes
17 
18 I32 find_index(map<DBL, I32> *spectrum_map, DBL key);
19 I32 find_index(map<SGL, I32> *spectrum_map, SGL key);
20 /******************************************************************************/
21 
22