mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-02 17:03:45 +00:00
18 lines
222 B
C++
18 lines
222 B
C++
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* ZephCore clock interfaces
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace mesh {
|
|
|
|
class MillisecondClock {
|
|
public:
|
|
virtual unsigned long getMillis() = 0;
|
|
};
|
|
|
|
} /* namespace mesh */
|