mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 19:40:21 +01:00
* New version using pygtkmvc framework.
This commit is contained in:
18
mvc/src/models/m_main.py
Normal file
18
mvc/src/models/m_main.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# This Python file uses the following encoding: utf-8
|
||||
|
||||
import utils._importer
|
||||
import utils.globals
|
||||
from gtkmvc import Model
|
||||
|
||||
class MainModel(Model):
|
||||
"""Our model contains a numeric counter and a numeric value that
|
||||
holds the value that the counter must be assigned to when we the
|
||||
model is reset"""
|
||||
|
||||
__properties__ = {}
|
||||
|
||||
def __init__(self):
|
||||
Model.__init__(self)
|
||||
return
|
||||
|
||||
pass # end of class
|
||||
Reference in New Issue
Block a user