Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/launch_server.py
diff options
context:
space:
mode:
authorNat <natcl@hotmail.com>2007-09-13 16:01:09 (GMT)
committer Nat <natcl@hotmail.com>2007-09-13 16:01:09 (GMT)
commit6d7e6f83bec91d4c3e49fe64d7793f12d1d3509b (patch)
tree013613f48b4f4a3f91d3ea9f1c0511153cd6f2b4 /launch_server.py
parente12dbff4dda5aafbaac98f75f0467ef00dc06c32 (diff)
split
Diffstat (limited to 'launch_server.py')
-rwxr-xr-xlaunch_server.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/launch_server.py b/launch_server.py
deleted file mode 100755
index d9ee3be..0000000
--- a/launch_server.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/python2.4
-
-import pygtk
-pygtk.require( '2.0' )
-import gtk
-
-from Framework.Constants import Constants
-from Framework.CSound.CSoundClient import CSoundClient
-from Framework.CSound.CSoundServer import CsoundServerMult
-from Framework.CSound.CSoundConstants import CSoundConstants
-
-#----------------------------------------------------------------------
-# Startup an instance of TamTam!
-#----------------------------------------------------------------------
-if __name__ == "__main__":
- # TODO this should get started outside of TamTam (perhaps by Sugar?)
- # start the CSoundServer
- server = CsoundServerMult( ( CSoundConstants.SERVER_ADDRESS, CSoundConstants.SERVER_PORT ) )
- server.interpret()
-