rename files
[iotcloud.git] / version2 / src / C / TableStatus.cc
diff --git a/version2/src/C/TableStatus.cc b/version2/src/C/TableStatus.cc
deleted file mode 100644 (file)
index f61a6ae..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "TableStatus.h"
-#include "ByteBuffer.h"
-
-Entry *TableStatus_decode(Slot *slot, ByteBuffer *bb) {
-       int maxslots = bb->getInt();
-       return new TableStatus(slot, maxslots);
-}
-
-void TableStatus::encode(ByteBuffer *bb) {
-       bb->put(TypeTableStatus);
-       bb->putInt(maxslots);
-}