1# -*- coding: utf-8 -*-
2#
3# PhotoFilmStrip - Creates movies out of your pictures.
4#
5# Copyright (C) 2011 Jens Goepfert
6#
7
8
9class IAction:
10
11    def GetName(self):
12        raise NotImplementedError()
13
14    def Execute(self):
15        raise NotImplementedError()
16