Multi-Hackers / SocketModem

Dependents:   M2X_dev axeda_wrapper_dev MTS_M2x_Example1 MTS_Cellular_Connect_Example ... more

Revision:
39:6e94520a3217
Parent:
35:f28acb1be52d
Child:
43:3cacf019ed7d
--- a/utils/MTSCircularBuffer.cpp	Thu Dec 19 15:56:05 2013 +0000
+++ b/utils/MTSCircularBuffer.cpp	Thu Dec 19 19:49:58 2013 +0000
@@ -3,6 +3,8 @@
 
 #include "MTSCircularBuffer.h"
 
+using namespace mts;
+
 MTSCircularBuffer::MTSCircularBuffer(int bufferSize) : bufferSize(bufferSize), readIndex(0), writeIndex(0), _threshold(-1), _op(Vars::GREATER)
 {
     buffer = new char[bufferSize];