|
From: Herton R. K. <he...@us...> - 2005-06-23 04:26:54
|
Update of /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19032/libkimageprocess Modified Files: ktclassifbackend.cpp ktfeature.cpp ktfeaturemanager.cpp ktimage.h ktmethod.cpp ktmethod.h ktmethodmanager.cpp Log Message: - Added progress bar classes and QWidget, with may be useful slots. - Cosmetics. Index: ktmethod.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktmethod.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ktmethod.cpp 23 Jun 2005 03:18:47 -0000 1.5 +++ ktmethod.cpp 23 Jun 2005 04:26:46 -0000 1.6 @@ -1,5 +1,3 @@ - - /*************************************************************************** * Copyright (C) 2004 by * * Gustavo Pichorim Boiko <gus...@kd...> * Index: ktmethodmanager.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktmethodmanager.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ktmethodmanager.cpp 23 Jun 2005 03:18:47 -0000 1.8 +++ ktmethodmanager.cpp 23 Jun 2005 04:26:46 -0000 1.9 @@ -1,5 +1,3 @@ - - /*************************************************************************** * Copyright (C) 2004 by * * Gustavo Pichorim Boiko <gus...@kd...> * @@ -35,7 +33,6 @@ { } - KTMethodManager::~KTMethodManager() { } Index: ktclassifbackend.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktclassifbackend.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ktclassifbackend.cpp 13 Mar 2005 00:15:11 -0000 1.3 +++ ktclassifbackend.cpp 23 Jun 2005 04:26:46 -0000 1.4 @@ -1,5 +1,3 @@ - - /*************************************************************************** * Copyright (C) 2004 by * * Gustavo Pichorim Boiko <gus...@kd...> * @@ -27,7 +25,6 @@ { } - KTClassifBackend::~KTClassifBackend() { } Index: ktfeature.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktfeature.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ktfeature.cpp 24 Mar 2005 03:05:45 -0000 1.5 +++ ktfeature.cpp 23 Jun 2005 04:26:46 -0000 1.6 @@ -1,5 +1,3 @@ - - /*************************************************************************** * Copyright (C) 2004 by * * Gustavo Pichorim Boiko <gus...@kd...> * Index: ktmethod.h =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktmethod.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ktmethod.h 23 Jun 2005 03:18:47 -0000 1.6 +++ ktmethod.h 23 Jun 2005 04:26:46 -0000 1.7 @@ -61,5 +61,4 @@ }; - #endif Index: ktfeaturemanager.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktfeaturemanager.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ktfeaturemanager.cpp 2 Apr 2005 20:14:52 -0000 1.8 +++ ktfeaturemanager.cpp 23 Jun 2005 04:26:46 -0000 1.9 @@ -32,7 +32,6 @@ { } - KTFeatureManager::~KTFeatureManager() { } @@ -208,7 +207,5 @@ } } - - } #include "ktfeaturemanager.moc" Index: ktimage.h =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktimage.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ktimage.h 2 Apr 2005 18:12:41 -0000 1.9 +++ ktimage.h 23 Jun 2005 04:26:46 -0000 1.10 @@ -40,7 +40,6 @@ #define METHOD_ANGLE90_ONLY 3 #define METHOD_ANGLE135_ONLY 4 #define METHOD_MEAN 5 - /** This class extends the standard QImage class adding functions to interact with libtexture. |