/* === S Y N F I G ========================================================= */ /*! \file tool/progress.h ** \brief Progress class ** ** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License, or (at your option) any later version. ** ** This package is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** \endlegal */ /* ========================================================================= */ #ifndef __SYNFIG_PROGRESS_H #define __SYNFIG_PROGRESS_H using namespace std; using namespace etl; using namespace synfig; #include #include "definitions.h" class Progress : public synfig::ProgressCallback { const char *program; public: Progress(const char *name):program(name) { } virtual bool task(const String &task) { VERBOSE_OUT(1)<