To aid generating a cache ID, each viewer node needs a UUID. Previous iterations tried to hash a name and time, but a UUID is a much more efficient way to do this.
12 lines
104 B
C++
12 lines
104 B
C++
#ifndef EXPORTER_H
|
|
#define EXPORTER_H
|
|
|
|
|
|
class Exporter
|
|
{
|
|
public:
|
|
Exporter();
|
|
};
|
|
|
|
#endif // EXPORTER_H
|