13 lines
326 B
Python
Executable File
13 lines
326 B
Python
Executable File
#
|
|
#
|
|
# Author: Mahmoud Bassiouny <mbassiouny@vmware.com>
|
|
|
|
|
|
class Action(object):
|
|
|
|
def do_action(self, params):
|
|
raise NameError('Abstract method, this should be implemented in the child class')
|
|
|
|
def hide(self, params):
|
|
raise NameError('Abstract method, this should be implemented in the child class')
|