pymtt
 All Classes Namespaces Files Functions Variables Groups
BaseMTTUtility.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2015-2018 Intel, Inc. All rights reserved.
4 # $COPYRIGHT$
5 #
6 # Additional copyrights may follow
7 #
8 # $HEADER$
9 #
10 
11 from __future__ import print_function
12 from yapsy.IPlugin import IPlugin
13 
14 class BaseMTTUtility(IPlugin):
15  def __init__(self):
16  # initialise parent class
17  IPlugin.__init__(self)
18 
19  def print_name(self):
20  print("Utility")
21