Browse Source

Travis CI: API documentation update at 2017-01-12 16:29:43 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/f20475161ffb5164ab15c96560c8e8596341126a

Message: Add XMLFile::GetOrCreateRoot() & XMLElement::GetOrCreateChild(). Closes #1756.

urho3d-travis-ci 9 years ago
parent
commit
cc2e166157
4 changed files with 7 additions and 1 deletions
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 2 0
      Docs/LuaScriptAPI.dox
  3. 2 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -14058,6 +14058,7 @@ Matrix3 GetMatrix3(const String&) const;
 Matrix3x4 GetMatrix3x4(const String&) const;
 Matrix4 GetMatrix4(const String&) const;
 XMLElement GetNext(const String& = String ( )) const;
+XMLElement GetOrCreateChild(const String&);
 Quaternion GetQuaternion(const String&) const;
 ResourceRef GetResourceRef() const;
 ResourceRefList GetResourceRefList() const;
@@ -14129,6 +14130,7 @@ class XMLFile
 // Methods:
 XMLElement CreateRoot(const String&);
 bool FromString(const String&);
+XMLElement GetOrCreateRoot(const String&);
 XMLElement GetRoot(const String& = String ( ));
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);

+ 2 - 0
Docs/LuaScriptAPI.dox

@@ -7602,6 +7602,7 @@ Properties:
 Methods:
 
 - XMLElement CreateChild(const String name)
+- XMLElement GetOrCreateChild(const String name)
 - bool RemoveChild(const XMLElement& element)
 - bool RemoveChild(const String name)
 - bool RemoveChildren(const String name = String::EMPTY)
@@ -7692,6 +7693,7 @@ Methods:
 - void delete()
 - bool FromString(const String source)
 - XMLElement CreateRoot(const String name = String::EMPTY)
+- XMLElement GetOrCreateRoot(const String name = String::EMPTY)
 - XMLElement GetRoot(const String name = String::EMPTY)
 - String ToString(const String indentation = "\t") const
 - void Patch(XMLFile* patchFile)

+ 2 - 0
Docs/ScriptAPI.dox

@@ -15163,6 +15163,7 @@ Methods:
 - Matrix3x4 GetMatrix3x4(const String&) const
 - Matrix4 GetMatrix4(const String&) const
 - XMLElement GetNext(const String& = String ( )) const
+- XMLElement GetOrCreateChild(const String&)
 - Quaternion GetQuaternion(const String&) const
 - ResourceRef GetResourceRef() const
 - ResourceRefList GetResourceRefList() const
@@ -15230,6 +15231,7 @@ Methods:
 
 - XMLElement CreateRoot(const String&)
 - bool FromString(const String&)
+- XMLElement GetOrCreateRoot(const String&)
 - XMLElement GetRoot(const String& = String ( ))
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.39
+0.1.40