class SENSOR { private: int port; int channel; public: SENSOR(int xport, int xchannel) { port=xport; channel=xchannel; }
};
class LIGHT : public SENSOR { private: int value; public: LIGHT(int xport, int xchannel, int xvalue) : SENSOR(xport, xchannel) // <--------- { value=xvalue; } };
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.