00001 /* 00002 * Copyright (c) 2010 Remko Tronçon 00003 * Licensed under the GNU General Public License v3. 00004 * See Documentation/Licenses/GPLv3.txt for more information. 00005 */ 00006 00007 #pragma once 00008 00009 #include <string> 00010 00011 #include <Swiften/Base/API.h> 00012 00013 namespace Swift { 00014 class SWIFTEN_API SimpleIDGenerator { 00015 public: 00016 SimpleIDGenerator(); 00017 00018 std::string generateID(); 00019 00020 private: 00021 std::string currentID; 00022 }; 00023 }