A template for ring buffer implementation
Dependents: AwsomeStation LoRaBaseStation LoRaTerminal
Diff: RingBuffer.cpp
- Revision:
- 5:021f688bfdaa
- Parent:
- 4:e996c0644148
- Child:
- 6:790344151d69
--- a/RingBuffer.cpp Thu Sep 01 04:08:34 2016 +0000 +++ b/RingBuffer.cpp Fri Sep 02 03:23:04 2016 +0000 @@ -130,4 +130,8 @@ } // force compiler to create code for template -template class CircularBuffer<uint8_t>; \ No newline at end of file +template class CircularBuffer<uint8_t>; + +// forward declearation for AlohaFrame queue +class AlohaFrame; +template class CircularBuffer<AlohaFrame *>; \ No newline at end of file