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
+3 -3
View File
@@ -48,7 +48,7 @@ namespace glbarcode
/**
* Barcode creation function signature.
*/
typedef Barcode* (*BarcodeCreateFct)( void );
typedef Barcode* (*BarcodeCreateFct)();
private:
@@ -66,7 +66,7 @@ namespace glbarcode
* is optional for an application to call init(), because glbarcode++ will automatically
* initialize the factory on demand.
*/
static void init( void );
static void init();
/**
@@ -97,7 +97,7 @@ namespace glbarcode
/**
* Get list of supported types.
*/
static TypeIdList getSupportedTypes( void );
static TypeIdList getSupportedTypes();
private: