Subversion Repositories HomeAutomation

Rev

Rev 1398 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. ###########################################################
  2. #
  3. # Template for a packet handler (member of a node interface
  4. # class)
  5. #
  6. ###########################################################
  7.  
  8. class CanPktHandlerBase:
  9.    
  10.     def __init__ (self):
  11.         pass
  12.    
  13.     def input(self, data):
  14.         pass
  15.    
  16.     def output(self, data):
  17.         pass
  18.