2015-06-21 21:02:10 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) FIRST 2015. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#ifndef NTCORE_H_
|
|
|
|
|
#define NTCORE_H_
|
|
|
|
|
|
2015-07-17 07:21:07 -07:00
|
|
|
/* C API */
|
|
|
|
|
#include "ntcore_c.h"
|
2015-06-21 21:02:10 -07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2015-07-17 07:21:07 -07:00
|
|
|
/* C++ API */
|
|
|
|
|
#include "ntcore_cpp.h"
|
2016-11-03 21:03:45 -07:00
|
|
|
#endif /* __cplusplus */
|
2015-06-21 21:02:10 -07:00
|
|
|
|
2016-11-03 21:03:45 -07:00
|
|
|
#endif /* NTCORE_H_ */
|