/* * LASH * * Copyright (C) 2003 Robert Ham * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include lash_connect_params_t * lash_connect_params_new() { lash_connect_params_t *params; params = lash_malloc0(sizeof(lash_connect_params_t)); uuid_clear(params->id); return params; } void lash_connect_params_destroy(lash_connect_params_t * params) { set_string_property(params->project, NULL); set_string_property(params->working_dir, NULL); set_string_property(params->class, NULL); } void lash_connect_params_set_project(lash_connect_params_t * params, const char *project) { set_string_property(params->project, project); } void lash_connect_params_set_working_dir(lash_connect_params_t * params, const char *working_dir) { set_string_property(params->working_dir, working_dir); } void lash_connect_params_set_class(lash_connect_params_t * params, const char *class) { set_string_property(params->class, class); }