beremiz
Clone
Summary
Browse
Changes
Graph
Now, params and buttons for plugin are aligned in a single big column
2008-01-29, etisserant
d53a02609e5f
Now, params and buttons for plugin are aligned in a single big column
# module which import C files as strings
import os
def code(name):
filename = os.path.join(os.path.split(__file__)[0],name + ".c")
if os.path.exists(filename):
return open(filename).read()
else:
return "#error %s target not implemented !!!\n"%name