summaryrefslogtreecommitdiff
path: root/include/esp8266/driver/uptime.h
blob: 7da10cbdbc7874a9fea0e7cce12e13b6d43914a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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