Skip to content
Snippets Groups Projects
uptime.h 189 B
Newer Older
#ifndef UPTIME_H
#define UPTIME_H

#include "c_types.h"

class Uptime {
	private:
		Uptime(const Uptime &copy);

	public:
		Uptime () {}
		uint32_t get();
};

extern Uptime uptime;

#endif