telldus/driver/TellUsbD101/Device.cpp
2008-02-05 13:14:30 +00:00

52 lines
624 B
C++

#include "Device.h"
/*
* Constructor
*/
Device::Device(int intDongleIndex)
{
this->intDongleIndex = intDongleIndex;
}
/*
* Destructor
*/
Device::~Device(void)
{
intDongleIndex = -1;
}
/*
* Turn on, virtual
*/
void Device::turnOn(void){
//do nothing
}
/*
* Turn off, virtual
*/
void Device::turnOff(void){
//do nothing
}
/*
* Bell, virtual
*/
void Device::bell(void){
//do nothing
}
/*
* Dim, virtual
*/
void Device::dim(unsigned char level){
//do nothing
}
/*
* Has Method, virtual
*/
bool Device::hasMethod(int methodname, char* strModel){
return false;
}