Engauge Digitizer  2
ValuesVectorXOrY.h
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #ifndef VALUES_VECTOR_X_OR_Y_H
8 #define VALUES_VECTOR_X_OR_Y_H
9 
10 #include <QMap>
11 
12 // Save values into container that preserves order by key (QMap). These are common to all included curves
13 // QMap is for fast random access
14 typedef QMap<double, bool> ValuesVectorXOrY;
15 
16 #endif // VALUES_VECTOR_X_OR_Y_H