GRALESHELL

graleshellimageplane.h

00001 /*
00002 
00003   This file is a part of GRALESHELL, a program to facilitate the simulation
00004   and inversion of gravitational lenses, based on the GRALE library.
00005 
00006   Copyright (C) 2008-2012 Jori Liesenborgs
00007 
00008   Contact: jori.liesenborgs@gmail.com
00009   
00010   This program is free software; you can redistribute it and/or modify
00011   it under the terms of the GNU General Public License as published by
00012   the Free Software Foundation; either version 2 of the License, or
00013   (at your option) any later version.
00014   
00015   This program is distributed in the hope that it will be useful,
00016   but WITHOUT ANY WARRANTY; without even the implied warranty of
00017   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018   GNU General Public License for more details.
00019   
00020   You should have received a copy of the GNU General Public License
00021   along with this program; if not, write to the Free Software
00022   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00023   
00024 */
00025 
00026 #ifndef GRALESHELLIMAGEPLANE_H
00027 
00028 #define GRALESHELLIMAGEPLANE_H
00029 
00030 #include <grale/imageplane.h>
00031 
00032 namespace shellp
00033 {
00034         class IOSystem;
00035 }
00036 
00037 class GraleShellImagePlane : public grale::ImagePlane
00038 {
00039 public:
00040         GraleShellImagePlane(grale::GravitationalLens *l, grale::SourcePlane *s);
00041         ~GraleShellImagePlane();
00042 private:
00043         void setFeedbackStatus(const std::string &msg);
00044         void setFeedbackPercentage(int pct);
00045 
00046         shellp::IOSystem *iosys;
00047         int prevpct;
00048 };
00049 
00050 #endif // GRALESHELLIMAGEPLANE_H