[contrib] add a xbmc plugin that interracts with videoob
This commit is contained in:
parent
d479a86c4d
commit
d1839bfcd4
23 changed files with 1036 additions and 0 deletions
16
contrib/plugin.video.videoobmc/resources/lib/base/actions.py
Normal file
16
contrib/plugin.video.videoobmc/resources/lib/base/actions.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from abc import ABCMeta, abstractmethod
|
||||
|
||||
|
||||
class BaseAction():
|
||||
__metaclass__ = ABCMeta
|
||||
|
||||
@abstractmethod
|
||||
def _do(self, param=None):
|
||||
"""
|
||||
Overload this method in application type subclass
|
||||
if you want to associate an action to the menu
|
||||
"""
|
||||
pass
|
||||
|
||||
actions = {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue