1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Projects/libmml/pymml/mmldtm.py

32 lines
426 B
Python
Raw Normal View History

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