~openbias/bias-trunk/bias-public-trunk

« back to all changes in this revision

Viewing changes to bias_olap/cube/datatype.py

  • Committer: Jose Patricio
  • Date: 2011-10-19 03:16:40 UTC
  • Revision ID: josepato@bias.com.mx-20111019031640-05zd7r5lxwx084qu
el push inicial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
class datatype_class(object):
 
3
    def __init__(self):
 
4
        self.datatype = {}
 
5
    def subscribe(self, name, data):
 
6
        self.datatype[name] = data
 
7
datatype = datatype_class()
 
8
# vim: ts=4 sts=4 sw=4 si et