Updated wrappers

This commit is contained in:
Robert Osfield
2007-02-12 18:02:15 +00:00
parent d28a6011f1
commit 3a48c95fc5
304 changed files with 8597 additions and 376 deletions

View File

@@ -41,14 +41,17 @@ BEGIN_OBJECT_REFLECTOR(osgText::String)
"",
"");
I_Constructor1(IN, const osgText::String &, str,
Properties::NON_EXPLICIT,
____String__C5_String_R1,
"",
"");
I_Constructor1(IN, const std::string &, str,
Properties::NON_EXPLICIT,
____String__C5_std_string_R1,
"",
"");
I_Constructor1(IN, const wchar_t *, text,
Properties::NON_EXPLICIT,
____String__C5_wchar_t_P1,
"",
"");
@@ -57,18 +60,22 @@ BEGIN_OBJECT_REFLECTOR(osgText::String)
"",
"");
I_Method1(void, set, IN, const std::string &, str,
Properties::NON_VIRTUAL,
__void__set__C5_std_string_R1,
"",
"");
I_Method1(void, set, IN, const wchar_t *, text,
Properties::NON_VIRTUAL,
__void__set__C5_wchar_t_P1,
"Set the text using a wchar_t string, which is converted to an internal TextString. ",
"");
I_Method2(void, set, IN, const std::string &, text, IN, osgText::String::Encoding, encoding,
Properties::NON_VIRTUAL,
__void__set__C5_std_string_R1__Encoding,
"Set the text using a Unicode encoded std::string, which is converted to an internal TextString. ",
"The encoding parameter specificies which Unicode encodeding is used in the std::string. ");
I_Method0(std::string, createUTF8EncodedString,
Properties::NON_VIRTUAL,
__std_string__createUTF8EncodedString,
"returns a UTF8 encoded version of this osgText::String. ",
"");
@@ -80,6 +87,7 @@ BEGIN_OBJECT_REFLECTOR(osgText::VectorUInt)
"",
"");
I_Constructor1(IN, const osgText::VectorUInt &, copy,
Properties::NON_EXPLICIT,
____VectorUInt__C5_VectorUInt_R1,
"",
"");
@@ -88,6 +96,7 @@ BEGIN_OBJECT_REFLECTOR(osgText::VectorUInt)
"",
"");
I_Constructor1(IN, unsigned int, n,
Properties::EXPLICIT,
____VectorUInt__unsigned_int,
"",
"");