Python LMF library
 All Classes Namespaces Files Functions Variables
video.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @package resources
4 """
5 
6 from material import Material
7 
8 class Video(Material):
9  """! Video is a Material subclass representing a video.
10  """
11  def __init__(self):
12  """! @brief Constructor.
13  Video instances are owned by ?.
14  @return A Video instance.
15  """
16  # Initialize Material attributes: 'mediaType', 'fileName' and 'author'
17  self.__new__()
18  self.description = None
19 
20  def __del__(self):
21  """! @brief Destructor.
22  """
23  pass
Video is a Material subclass representing a video.
Definition: video.py:8