Modernization cleanup.
This commit is contained in:
@@ -69,7 +69,7 @@ namespace glbarcode
|
||||
*
|
||||
* Used by glbarcode::BarcodeFactory
|
||||
*/
|
||||
static Barcode* create( void );
|
||||
static Barcode* create();
|
||||
|
||||
|
||||
protected:
|
||||
@@ -80,15 +80,15 @@ namespace glbarcode
|
||||
|
||||
|
||||
private:
|
||||
bool validate( const std::string& rawData );
|
||||
bool validate( const std::string& rawData ) override;
|
||||
|
||||
std::string encode( const std::string& cookedData );
|
||||
std::string encode( const std::string& cookedData ) override;
|
||||
|
||||
void vectorize( const std::string& codedData,
|
||||
const std::string& displayText,
|
||||
const std::string& cookedData,
|
||||
double& w,
|
||||
double& h );
|
||||
double& h ) override;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user