00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef EXPORT_ALIGN_LOG_H 00008 #define EXPORT_ALIGN_LOG_H 00009 00017 class ExportAlignLog 00018 { 00019 public: 00021 ExportAlignLog(double xMin, 00022 double xMax); 00023 00025 double firstSimplestNumber () const; 00026 00027 private: 00028 ExportAlignLog(); 00029 00030 double log10 (double in) const; 00031 00032 double m_firstSimplestNumber; 00033 }; 00034 00035 #endif // EXPORT_ALIGN_LOG_H