Alida-C++ 0.5
|
00001 /* 00002 * This file is part of Alida-C++ library for 00003 * 00004 * Automatic Logging of Process Information in Data Analysis. 00005 * 00006 * Copyright (C) 2012 - @YEAR@ 00007 * 00008 * This program is free software: you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation, either version 3 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00020 * 00021 * Fore more information on Alida, visit 00022 * 00023 * http://www.informatik.uni-halle.de/alida/ 00024 * 00025 */ 00026 00027 /* 00028 * Most recent change(s): 00029 * 00030 * $Rev: 47 $ 00031 * $Date: 2012/03/06 20:50:22 $ 00032 * $Author: posch $ 00033 * 00034 */ 00035 00036 #include <string> 00037 00038 #include "operator/aldOpParameterDescriptor.h" 00039 00040 using namespace std; 00041 00042 using namespace Alida; 00043 00044 ALDOpParameterDescriptor::ALDOpParameterDescriptor( std::string _name, 00045 std::string _typeIdStr, std::string _typeNiceName, 00046 Direction _direction, bool _required, bool _supplemental, 00047 std::string _label, std::string _explanation, void* _defaultValue) { 00048 00049 name = _name; 00050 typeIdStr = _typeIdStr; 00051 typeNiceName = _typeNiceName; 00052 direction = _direction; 00053 required = _required; 00054 supplemental = _supplemental; 00055 label = _label; 00056 explanation = _explanation; 00057 defaultValue = _defaultValue; 00058 value = NULL; 00059 } 00060