deleted excess semicolons, commas

This commit is contained in:
Ilya Lavrenov
2014-01-18 01:30:29 +04:00
parent e965f3d3d4
commit 37789f015a
68 changed files with 442 additions and 413 deletions

View File

@@ -59,11 +59,11 @@ class BaseImageDecoder
{
public:
BaseImageDecoder();
virtual ~BaseImageDecoder() {};
virtual ~BaseImageDecoder() {}
int width() const { return m_width; };
int height() const { return m_height; };
virtual int type() const { return m_type; };
int width() const { return m_width; }
int height() const { return m_height; }
virtual int type() const { return m_type; }
virtual bool setSource( const String& filename );
virtual bool setSource( const Mat& buf );
@@ -90,7 +90,7 @@ class BaseImageEncoder
{
public:
BaseImageEncoder();
virtual ~BaseImageEncoder() {};
virtual ~BaseImageEncoder() {}
virtual bool isFormatSupported( int depth ) const;
virtual bool setDestination( const String& filename );