Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Jam
diff options
context:
space:
mode:
authoramartin <olpc@xo-05-28-21.localdomain>2007-07-18 10:50:56 (GMT)
committer amartin <olpc@xo-05-28-21.localdomain>2007-07-18 10:50:56 (GMT)
commit5fb0b8903997a65bd068b843994f58f2f24fa953 (patch)
treec956760c7d93b771dc85364090460c660827e9f3 /Jam
parent24c227ae248d26862ce6dd868fefc129c2d38899 (diff)
Jamgit-update-index scripts/update-activity.sh git-update-index scripts/update-activity.sh
Diffstat (limited to 'Jam')
-rw-r--r--Jam/Jam.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Jam/Jam.py b/Jam/Jam.py
new file mode 100644
index 0000000..a003311
--- /dev/null
+++ b/Jam/Jam.py
@@ -0,0 +1,18 @@
+from SubActivity import SubActivity
+
+class miniTamTamMain(SubActivity):
+
+ def __init__(self, activity, set_mode):
+ SubActivity.__init__(self, set_mode)
+
+ self.activity = activity
+
+
+ def onActivate( self, arg ):
+ pass
+
+ def onDeactivate( self ):
+ pass
+
+ def onDestroy( self ):
+ pass