1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef ENTROPY_H
4 #define ENTROPY_H
5 
6 #include "estring.h"
7 
8 
9 class Entropy
10     : public Garbage
11 {
12 public:
13     static void setup();
14     static EString asString( uint );
15     static uint asNumber( uint );
16 };
17 
18 #endif
19