WPILibC++  unspecified
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
timestamp.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) FIRST 2015. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 #ifndef NT_SUPPORT_TIMESTAMP_H_
8 #define NT_SUPPORT_TIMESTAMP_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 unsigned long long NT_Now(void);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #ifdef __cplusplus
21 namespace nt {
22 
23 unsigned long long Now();
24 
25 } // namespace nt
26 #endif
27 
28 #endif // NT_SUPPORT_TIMESTAMP_H_