Subversion Repositories HomeAutomation

Rev

Rev 1323 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1323 Rev 1326
Line 49... Line 49...
49
{
49
{
50
    this->myBuffer.clear();
50
    this->myBuffer.clear();
51
    // TÒDO resent pointers
51
    // TÒDO resent pointers
52
}
52
}
53
 
53
 
54
void BitBuffer::readDecimal(unsigned int length, unsigned int scaling, double & value)
-
 
55
{
-
 
56
}
-
 
57
 
54
 
58
void BitBuffer::writeDecimal(unsigned int length, unsigned int scaling, double value)
-
 
59
{
-
 
60
}
-
 
61
 
-
 
62
 
-
 
63
void BitBuffer::readBasicType(unsigned int length, unsigned long & value)
55
void BitBuffer::read(unsigned int length, unsigned long & value)
64
{
56
{
65
}
57
}
66
 
58
 
67
void BitBuffer::writeBasicType(unsigned int length, unsigned long value)
59
void BitBuffer::read(unsigned int length, long & value)
68
{
60
{
69
}
61
}
70
 
62
 
71
void BitBuffer::readBasicType(unsigned int length, long & value)
63
void BitBuffer::read(unsigned int length, bool & value)
72
{
64
{
73
}
65
}
74
 
66
 
-
 
67
 
-
 
68
 
75
void BitBuffer::writeBasicType(unsigned int length, long  value)
69
void BitBuffer::write(unsigned int length, unsigned long value)
76
{
70
{
77
}
71
}
78
 
72
 
79
void BitBuffer::readBasicType(unsigned int length, bool & value)
73
void BitBuffer::write(unsigned int length, long  value)
80
{
74
{
81
}
75
}
82
 
76
 
83
void BitBuffer::writeBasicType(unsigned int length, bool value)
77
void BitBuffer::write(unsigned int length, bool value)
84
{
78
{
85
}
79
}
86
 
80
 
87
 
81
 
88
}
82
}