Update of /cvsroot/libphidget/libphidget/src/phidget++
In directory sc8-pr-cvs1:/tmp/cvs-serv24725/phidget++
Modified Files:
CDigitalIn.cc CDigitalIn.h
Log Message:
Added more features to the ik2lcd example. Sends more info to the TextLCD and turns on the same digital out when a digital in turned on.
Index: CDigitalIn.cc
===================================================================
RCS file: /cvsroot/libphidget/libphidget/src/phidget++/CDigitalIn.cc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** CDigitalIn.cc 16 Dec 2002 22:37:10 -0000 1.7
--- CDigitalIn.cc 17 Dec 2002 20:28:51 -0000 1.8
***************
*** 47,48 ****
--- 47,53 ----
METHOD_UNGUARD;
}
+
+ CInterfaceKit &CDigitalIn::interfaceKit()
+ {
+ return(*_interfaceKit);
+ }
Index: CDigitalIn.h
===================================================================
RCS file: /cvsroot/libphidget/libphidget/src/phidget++/CDigitalIn.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** CDigitalIn.h 16 Dec 2002 22:37:11 -0000 1.7
--- CDigitalIn.h 17 Dec 2002 20:28:51 -0000 1.8
***************
*** 80,83 ****
--- 80,85 ----
virtual void onChange() {}
+
+ CInterfaceKit &interfaceKit() ;
};
|