byteBuffer added

This commit is contained in:
Matej Sekoranja
2010-10-21 14:28:34 +02:00
parent f7c89f2ed9
commit 7cf33be144
9 changed files with 650 additions and 31 deletions

View File

@@ -1,3 +1,5 @@
#include "string.h"
#include "stdio.h"
#include "bitSet.h"
namespace epics { namespace pvData {
@@ -302,6 +304,11 @@ namespace epics { namespace pvData {
return true;
}
bool BitSet::operator!=(const BitSet &set) const
{
return !(*this == set);
}
void BitSet::toString(StringBuilder buffer) { toString(buffer, 0); }
void BitSet::toString(StringBuilder buffer, int indentLevel) const