GM6000 Digital Heater Controller Branch: main
SDX-1330
TimeApi.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_TimeApi_h_
2#define Cpl_Logging_TimeApi_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include <stdint.h>
18
19/** Default data type for storing a time-stamp value. The units of the value
20 are application specific.
21 */
22#ifndef CplLoggingTime_T
23#define CplLoggingTime_T uint64_t
24#endif
25
26///
27namespace Cpl {
28///
29namespace Logging {
30
31/** This method returns the application current 'time' value that will
32 be used to time-stamp each individual log entry. The units of the value
33 are application specific.
34 */
36
37
38}; // end namespaces
39};
40#endif // end header latch
#define CplLoggingTime_T
Default data type for storing a time-stamp value.
Definition TimeApi.h:23
CplLoggingTime_T now() noexcept
This method returns the application current 'time' value that will be used to time-stamp each individ...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20