18 lines
241 B
C++
18 lines
241 B
C++
#include <bcvalue.h>
|
|
|
|
|
|
BCRawValue::BCRawValue(BCDevice::ID deviceID_, BC::ID targetID_)
|
|
: deviceID{deviceID_}, targetID{targetID_}
|
|
{
|
|
}
|
|
|
|
void BCRawValue::setLongValue( uint8_t value)
|
|
{
|
|
|
|
}
|
|
|
|
uint8_t BCRawValue::getLongValue()
|
|
{
|
|
return 0;
|
|
}
|