summaryrefslogtreecommitdiffstats
blob: db7b80d5a0adcab60983b17b7a969f7944417bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SWIFTEN_IDGenerator_H
#define SWIFTEN_IDGenerator_H

#include "Swiften/Base/String.h"

namespace Swift {
	class IDGenerator {
		public:
			IDGenerator();

			String generateID();

		private:
			String currentID_;
	};
}

#endif