Allow optional arguments to be set from Python with None, e.g: ifc_person.set_argument(0, None)

This commit is contained in:
Thomas Krijnen
2013-07-20 13:51:06 -07:00
parent e5abdb7de8
commit 10657416ea
4 changed files with 15 additions and 2 deletions
+1
View File
@@ -28,6 +28,7 @@ namespace Ifc {
const char* getArgumentName(unsigned int i) const;
unsigned getArgumentIndex(const std::string& a) const;
void setArgument(unsigned int i);
void setArgument(unsigned int i, int v);
void setArgument(unsigned int i, bool v);
void setArgument(unsigned int i, double v);