Modernization cleanup.

This commit is contained in:
Jim Evins
2017-04-10 22:43:34 -04:00
parent b17cea7ace
commit 4d194f72e9
34 changed files with 110 additions and 109 deletions
+4 -4
View File
@@ -44,7 +44,7 @@ namespace glbarcode
*
* Used by glbarcode::BarcodeFactory
*/
static Barcode* create( void );
static Barcode* create();
/**
@@ -54,9 +54,9 @@ namespace glbarcode
private:
bool validateDigits( int nDigits );
bool validateDigits( int nDigits ) override;
std::string preprocess( const std::string& rawData );
std::string preprocess( const std::string& rawData ) override;
void vectorizeText( const std::string& displayText,
double size1,
@@ -66,7 +66,7 @@ namespace glbarcode
double y1,
double x2Left,
double x2Right,
double y2 );
double y2 ) override;
};