1
0
mirror of https://github.com/moparisthebest/Simba synced 2025-02-21 21:41:50 -05:00

32 lines
426 B
Python
Raw Normal View History

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