00001 /* sbuild-util - sbuild data types 00002 * 00003 * Copyright © 2005 Roger Leigh <rleigh@debian.org> 00004 * 00005 * schroot is free software; you can redistribute it and/or modify it 00006 * under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * schroot is distributed in the hope that it will be useful, but 00011 * WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00018 * MA 02111-1307 USA 00019 * 00020 *********************************************************************/ 00021 00022 #ifndef SBUILD_TYPES_H 00023 #define SBUILD_TYPES_H 00024 00025 #include <string> 00026 #include <vector> 00027 00028 namespace sbuild 00029 { 00030 00031 typedef std::vector<std::string> string_list; 00032 typedef std::pair<std::string,std::string> env; 00033 typedef std::vector<env> env_list; 00034 00035 } 00036 00037 #endif /* SBUILD_TYPES_H */ 00038 00039 /* 00040 * Local Variables: 00041 * mode:C++ 00042 * End: 00043 */