Ejemplo n.º 1
0
Pot::~Pot()
{
  delete (gnd);
  delete (power);
  delete (analogInput);
  DeleteConnections();
}
Ejemplo n.º 2
0
RotaryDip::~RotaryDip()
{	
  for (int i=0; i<MAX_ROTARYDIP_PINS; i++)
  {
  	delete (pin[i]);
  }

  DeleteConnections();
}
Ejemplo n.º 3
0
ShiftRegister::~ShiftRegister()
{	
  for (int i=0; i<MAX_SHIFTREGISTER_PINS; i++)
  {
  	delete (pin[i]);
  }

  DeleteConnections();
}
Ejemplo n.º 4
0
ArduinoComponent::~ArduinoComponent()
{
	
  delete (gnd);
  delete (power);
  for (int i=0; i<MAX_DIGITAL_VALUES; i++)
  {
    delete (d[i]);
  }
  DeleteConnections();
}
Ejemplo n.º 5
0
    ConnectionProvider::~ConnectionProvider()
    {
        DeleteConnections();

    // We want to stop dbus daemon only on Windows platform
#ifdef WIN32
        StopDBusDaemon();
        g_main_loop_.StopLoop();
        g_main_loop_.wait();
#endif
    }
cConnectionManager::~cConnectionManager(){
  DeleteConnections();
}
Ejemplo n.º 7
0
Resistor::~Resistor()
{
  delete (input);
  delete (output);
  DeleteConnections();  
}