6e2051995e5b2419fefa330929c726874fe33c1c
[findit] / src / resultlist.py
1 #!/usr/bin/env python
2 # -*-coding: utf-8 -*-
3 # vim: sw=4 ts=4 expandtab ai
4 # pylint: disable-msg=C0301
5
6 class ResultList(object):
7
8     def __init__(self):
9         self.rlist = []
10
11     def add(self, rproperties):
12         self.rlist.append(rproperties)
13
14     def show(self, out_ui):
15         for rproperties in self.rlist:
16             out_ui.show(rproperties)