roar/liboperators/Operator.py

15 lines
287 B
Python

#!/usr/bin/env python3
#
# Operator.py
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
#
class Operator(object):
def apply(self, region):
pass
def __init__(self, *args):
pass
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120