Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members

functionInfo.h

Go to the documentation of this file.
00001 00007 00008 // This software is distributed as part of the Improla library. 00009 // Improla is a library of classes for image processing. 00010 // 00011 // Copyright (c) 2004, B. R. Siva Chandra, India 00012 // 00013 // This program is free software; you can redistribute it and/or 00014 // modify it under the terms of the GNU General Public License 00015 // as published by the Free Software Foundation; either version 2 00016 // of the License, or (at your option) any later version. 00017 // 00018 // This program is distributed in the hope that it will be useful, 00019 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 // GNU General Public License for more details. 00022 // 00023 // You should have received a copy of the GNU General Public License 00024 // along with this program; if not, write to the Free Software 00025 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00026 // 00027 // In case you would like to contact the author, use the following e-mail 00028 // address: sivachandra_br@yahoo.com 00030 00032 // First Created : 16th September 2004 00033 // Author : Siva Chandra 00034 // Purpose : File containing declarations for of class which shall hold the 00035 // function information of an IP_Function (i.e, its derivative). 00037 00038 #ifndef __FUNCTION_INFO_H__ 00039 #define __FUNCTION_INFO_H__ 00040 00041 #include <istring.h> 00042 #include <paramInfo.h> 00043 #include <tlist.h> 00044 00045 namespace iptk 00046 { // Start of namespace brace. 00047 00050 class FunctionInfo 00051 { 00052 public: 00055 FunctionInfo(void); 00056 00059 FunctionInfo(const FunctionInfo &fi); 00060 00063 void setFunctionName(iutk::String str); 00064 00067 iutk::String getFunctionName(void); 00068 00071 void appendParameter(iutk::String str, double start, double stop, double step); 00072 00075 tutk::List< iptk::ParamInfo > getParamList(void); 00076 00077 private: 00078 iutk::String functionName; 00079 tutk::List< iptk::ParamInfo > paramList; 00080 }; 00081 00082 } // End of namespace brace. 00083 00084 #endif // __FUNCTION_INFO_H__ 00085

Generated on Mon Nov 22 11:12:41 2004 for ImprolaLib by doxygen 1.3.7