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