Changeset 19667

Show
Ignore:
Timestamp:
12/17/06 10:08:43 (2 years ago)
Author:
patrick
Message:

Updated for the deprecation of gadget::BaseDeviceInterface::refreshAllDevices()
in favor of gadget::BaseDeviceInterface::refreshAllInterfaces() in Gadgeteer
1.0.2.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PyJuggler/branches/1.0/ChangeLog

    r19632 r19667  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
     3Dec-17-2006 patrick     Updated for the deprecation of 
     4                        gadget::BaseDeviceInterface::refreshAllDevices(). 
    35Dec-11-2006 patrick     Exposed vrj::Projection::setNearFar() and 
    46                        vrj::Projection::getNearFar(). 
  • PyJuggler/branches/1.0/src/gadget/_BaseDeviceInterface.cpp

    r18527 r19667  
    8989          "proxy." 
    9090      ) 
     91      .def("refreshAllInterfaces", 
     92           &gadget::BaseDeviceInterface::refreshAllInterfaces, 
     93           "refreshAllInterfaces()\n" 
     94           "Refreshes all the known device interface objects." 
     95      ) 
    9196      .def("refreshAllDevices", 
    9297           &gadget::BaseDeviceInterface::refreshAllDevices, 
    9398           "refreshAllDevices()\n" 
    94            "Refreshes all the known device interface objects." 
     99           "Refreshes all the known device interface objects.\n" 
     100           "DEPRECATED: Use refreshAllInterfaces() instead." 
    95101      ) 
     102      .staticmethod("refreshAllInterfaces") 
    96103      .staticmethod("refreshAllDevices") 
    97104   ;