File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 7
7
from ._dss_capi import ffi , lib
8
8
from ._cffi_api_util import *
9
9
import numpy as np
10
+ import warnings
10
11
11
12
# Bind to the FFI module instance for OpenDSS-Classic
12
13
api_util = CffiApiUtil (ffi , lib )
@@ -4989,6 +4990,18 @@ def Version(self):
4989
4990
'''Get version string for the DSS.'''
4990
4991
return get_string (lib .DSS_Get_Version ())
4991
4992
4993
+ @property
4994
+ def AllowForms (self ):
4995
+ warnings .warn ('AllowForms is not implemented.' )
4996
+
4997
+ @AllowForms .setter
4998
+ def AllowForms (self , value ):
4999
+ warnings .warn ('AllowForms is not implemented.' )
5000
+
5001
+ def ShowPanel (self ):
5002
+ warnings .warn ('ShowPanel is not implemented.' )
5003
+
5004
+
4992
5005
4993
5006
4994
5007
Original file line number Diff line number Diff line change 7
7
from .._dsspm_capi import ffi , lib
8
8
from .._cffi_api_util import *
9
9
import numpy as np
10
+ import warnings
10
11
11
12
# Bind to the FFI module instance for OpenDSS-PM
12
13
api_util = CffiApiUtil (ffi , lib )
@@ -5071,6 +5072,18 @@ def Version(self):
5071
5072
'''Get version string for the DSS.'''
5072
5073
return get_string (lib .DSS_Get_Version ())
5073
5074
5075
+ @property
5076
+ def AllowForms (self ):
5077
+ warnings .warn ('AllowForms is not implemented.' )
5078
+
5079
+ @AllowForms .setter
5080
+ def AllowForms (self , value ):
5081
+ warnings .warn ('AllowForms is not implemented.' )
5082
+
5083
+ def ShowPanel (self ):
5084
+ warnings .warn ('ShowPanel is not implemented.' )
5085
+
5086
+
5074
5087
5075
5088
5076
5089
You can’t perform that action at this time.
0 commit comments