summaryrefslogtreecommitdiffstats
path: root/command_manager.py
blob: f7d3cd465361ecc74b58b6cd138212f573c318f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: UTF-8 -*-
# Copyright 2012 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2 (a copy included | http://gnu.org/licenses/gpl-2.0.txt)


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

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