Travis CI: API documentation update at 2014-07-26 09:37:03 UTC.

[ci package]
This commit is contained in:
urho3d-travis-ci 2014-07-26 09:37:04 +00:00
parent 562a2e2d77
commit 67f224bfe9
2 changed files with 19 additions and 6 deletions

View File

@ -485,9 +485,12 @@ void Clear();
void Erase(uint);
int Find(const T&) const;
int Find(uint, const T&) const;
int FindByRef(const T&) const;
int FindByRef(uint, const T&) const;
void Insert(uint, const T&);
void Pop();
void Push(const T&);
void Reserve(uint);
void Resize(uint);
void Reverse();
void Sort();
@ -3473,9 +3476,9 @@ bool Exists(const String&) const;
bool Get(const String&, void*) const;
bool Get(const String&, double&) const;
bool Get(const String&, int64&) const;
void Set(const String&, void*);
void Set(const String&, double&);
void Set(const String&, int64&);
void Set(const String&, const void*);
void Set(const String&, const double&);
void Set(const String&, const int64&);
// Properties:
/* readonly */
@ -3486,6 +3489,10 @@ Array<String> keys;
uint length;
};
class DictionaryValue
{
};
class Drawable
{
// Methods:

View File

@ -2359,9 +2359,12 @@ Methods:
- void Erase(uint)
- int Find(const T&) const
- int Find(uint, const T&) const
- int FindByRef(const T&) const
- int FindByRef(uint, const T&) const
- void Insert(uint, const T&)
- void Pop()
- void Push(const T&)
- void Reserve(uint)
- void Resize(uint)
- void Reverse()
- void Sort()
@ -4895,9 +4898,9 @@ Methods:
- bool Get(const String&, ?&) const
- bool Get(const String&, double&) const
- bool Get(const String&, int64&) const
- void Set(const String&, ?&)
- void Set(const String&, double&)
- void Set(const String&, int64&)
- void Set(const String&, const ?&)
- void Set(const String&, const double&)
- void Set(const String&, const int64&)
Properties:
@ -4906,6 +4909,9 @@ Properties:
- uint length // readonly
### DictionaryValue
### Drawable
Methods: