After:

class bulb
{
   public:
      bulb( int, int );

   protected:
      int brightness;
      int temperature;
};

class LED: public bulb
{
   public:
      LED( int, int, bool );

   private:
      bool dimmable;
};