summaryrefslogtreecommitdiffstats
path: root/command_manager.py
blob: 50f82ca1ca6d2ee8d7557eb92f7eb5e95497f7ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: UTF-8 -*-
# Copyright 2013 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2 (a copy included | http://gnu.org/licenses/gpl-2.0.txt)
"""Command manager"""
__author__ = "Jan Pokorný <jpokorny @at@ Red Hat .dot. com>"


class CommandManager(object):
    """Class responsible for commands routing to filters or other actions"""
    def __init__(self, filter_manager):
        self.filter_manager = filter_manager

    def __call__(self, args):
        pass
        # self.filter_manager(string)