00001 /* InputVariable.h --- 00002 * 00003 * Filename: InputVariable.h 00004 * Description: 00005 * Author: subha 00006 * Maintainer: 00007 * Created: Fri Jun 26 06:36:11 2015 (-0400) 00008 * Version: 00009 * Last-Updated: 00010 * By: 00011 * Update #: 0 00012 * URL: 00013 * Keywords: 00014 * Compatibility: 00015 * 00016 */ 00017 00018 /* Commentary: 00019 * 00020 * 00021 * 00022 */ 00023 00024 /* Change log: 00025 * 00026 * 00027 */ 00028 00029 /* This program is free software; you can redistribute it and/or 00030 * modify it under the terms of the GNU General Public License as 00031 * published by the Free Software Foundation; either version 3, or 00032 * (at your option) any later version. 00033 * 00034 * This program is distributed in the hope that it will be useful, 00035 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00036 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00037 * General Public License for more details. 00038 * 00039 * You should have received a copy of the GNU General Public License 00040 * along with this program; see the file COPYING. If not, write to 00041 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth 00042 * Floor, Boston, MA 02110-1301, USA. 00043 */ 00044 00045 /* Code: */ 00046 #ifndef _INPUTVARIABLE_H 00047 #define _INPUTVARIABLE_H 00048 00049 #include "Variable.h" 00050 00051 class NSDFWriter; 00052 00058 class InputVariable: public Variable 00059 { 00060 public: 00061 InputVariable(); 00062 ~InputVariable(); 00063 void epSetValue(const Eref &eref, double value); 00064 void setOwner(NSDFWriter * owner); 00065 static const Cinfo * initCinfo(); 00066 protected: 00067 NSDFWriter * owner_; 00068 }; 00069 00070 #endif 00071 00072 /* InputVariable.h ends here */