GRALESHELL

cmdcosmology.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 CMDCOSMOLOGY_H
00027 
00028 #define CMDCOSMOLOGY_H
00029 
00030 #include <shellp/shellcommand.h>
00031 
00032 namespace shellp
00033 {
00034         class ShellCmdStringArg;
00035         class ShellCmdRealArg;
00036 }
00037 
00038 class CmdCosmologyShow : public shellp::ShellCommand
00039 {
00040 public:
00041         CmdCosmologyShow(const std::string &cmdName);
00042         ~CmdCosmologyShow();
00043         bool execute();
00044 };
00045 
00046 class CmdCosmologySet : public shellp::ShellCommand
00047 {
00048 public:
00049         CmdCosmologySet(const std::string &cmdName);
00050         ~CmdCosmologySet();
00051         bool execute();
00052 private:
00053         shellp::ShellCmdRealArg *m_pHArg;
00054         shellp::ShellCmdRealArg *m_pWmArg;
00055         shellp::ShellCmdRealArg *m_pWrArg;
00056         shellp::ShellCmdRealArg *m_pWvArg;
00057         shellp::ShellCmdRealArg *m_pWArg;
00058 };
00059 
00060 #endif // CMDCOSMOLOGY_H
00061