mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
Provide C++ API. Move all classes to "nt" namespace.
The C API is now just simple wrappers around the C++ API.
This commit is contained in:
committed by
Peter Johnson
parent
56f1481c24
commit
fcbd2751ba
@@ -8,7 +8,7 @@
|
||||
#ifndef NT_SEQNUM_H_
|
||||
#define NT_SEQNUM_H_
|
||||
|
||||
namespace ntimpl {
|
||||
namespace nt {
|
||||
|
||||
/* A sequence number per RFC 1982 */
|
||||
class SequenceNumber {
|
||||
@@ -57,6 +57,6 @@ inline bool operator!=(const SequenceNumber& lhs, const SequenceNumber& rhs) {
|
||||
return lhs.m_value != rhs.m_value;
|
||||
}
|
||||
|
||||
} // namespace ntimpl
|
||||
} // namespace nt
|
||||
|
||||
#endif // NT_SEQNUM_H_
|
||||
|
||||
Reference in New Issue
Block a user