added mvc skeleton
[findit] / src / mvc / models / application.py
1 from gtkmvc import Model
2 import os.path
3
4 from about import AboutModel
5
6
7 class ApplicationModel(Model):
8
9     def __init__(self):
10         Model.__init__(self)
11
12         self.about = AboutModel()
13         return
14
15     pass # end of class