2010-09-12 08:28:19 -04:00
|
|
|
from ctypes import *
|
|
|
|
from mmltypes import RESULT_OK, RESULT_FALSE, RESULT_ERROR
|
2010-06-27 06:07:39 -04:00
|
|
|
|
2010-09-12 08:28:19 -04:00
|
|
|
# TODO:
|
|
|
|
# Load from user defined points. (So called dynamic)
|
2010-06-27 06:07:39 -04:00
|
|
|
|
|
|
|
|
2010-09-12 08:28:19 -04:00
|
|
|
class DTM(object):
|
2010-06-27 06:07:39 -04:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2010-09-12 08:28:19 -04:00
|
|
|
def __del__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
pass
|
2010-06-27 06:07:39 -04:00
|
|
|
|
2010-09-12 08:28:19 -04:00
|
|
|
def to_str(self):
|
|
|
|
pass
|
2010-06-27 06:07:39 -04:00
|
|
|
|
2010-09-12 08:28:19 -04:00
|
|
|
def from_str(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def find(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def set_name(self):
|
|
|
|
pass
|
2010-06-27 06:07:39 -04:00
|
|
|
|
|
|
|
|