00001 /* 00002 ** Copyright (C) 2000 Idan Shoham <idan@m-tech.ab.ca> 00003 ** Copyright (C) 2003 Guilhem Bonnefille <guilhem.bonnefille@free.fr> 00004 ** 00005 ** This program is free software; you can redistribute it and/or modify 00006 ** it 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 ** This program is distributed in the hope that it will be useful, 00011 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 ** GNU 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, MA 02111-1307, USA. 00018 */ 00019 00020 #ifndef NAMED_ID_H 00021 #define NAMED_ID_H 00022 00024 class NAMED_ID 00025 { 00026 public: 00027 NAMED_ID(char *id, char *name); 00028 00029 const char * id() const { return mId; }; 00030 void setId(const char *); 00031 const char * name() const { return mName; }; 00032 00033 private: 00034 char *mId; 00035 char *mName; 00036 }; 00037 00038 #endif 00039