Initial commit of toolkit SWIG wrapper work

This commit is contained in:
Michael Tryby
2018-01-12 09:46:32 -05:00
parent f97d837231
commit 691c65878b
10 changed files with 453 additions and 28 deletions

View File

@@ -0,0 +1,13 @@
import epanet_toolkit as tlkt
def epanet():
[error, handle] = tlkt.EN_alloc()
[error, handle] = tlkt.EN_free(handle)
if __name__ == "__main__":
epanet()