00001 /* *************************************************** 00002 * File name : nodeid.h 00003 * Date : 2006/11/24 00004 * Author : Aitor Sologaistoa (jibsofra@si.ehu.es) 00005 * Kike Fernandez (sisfetek@si.ehu.es) 00006 * Maite Oronoz (jiporanm@si.ehu.es) 00007 * Purpose : Zuhaitzetako adabegien identifikadoreak 00008 * Use : 00009 * : 00010 * **************************************************** */ 00011 00012 #ifndef _NODEID_H 00013 #define _NODEID_H 00014 00015 #include "joinid.h" 00016 #include <string> 00017 00018 class NodeId: public JoinId { 00019 00020 public: 00021 static std::string sortuId(); 00022 00023 NodeId(); 00024 NodeId(const char*); 00025 NodeId(const std::string &); 00026 00027 }; 00028 00029 #endif //_NODEID_H