view trafficintelligence/base.py @ 1100:1e833fd8490d

working version of Newell car following model
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 20 Feb 2019 16:16:19 -0500
parents cc5cb04b04b0
children
line wrap: on
line source

'''Module for few base classes to avoid issues of circular import'''

class VideoFilenameAddable(object):
    'Base class with the capability to attach a video filename'

    def setVideoFilename(self, videoFilename):
        self.videoFilename = videoFilename