godot-cpp/include/core/NodePath.hpp

47 lines
596 B
C++
Raw Normal View History

2017-03-03 00:07:14 +00:00
#ifndef NODEPATH_H
#define NODEPATH_H
2017-03-06 07:49:24 +00:00
#include "String.hpp"
2017-03-03 00:07:14 +00:00
2017-10-03 10:37:34 +00:00
#include <gdnative/node_path.h>
2017-03-03 00:07:14 +00:00
namespace godot {
class NodePath
2017-03-03 00:07:14 +00:00
{
godot_node_path _node_path;
public:
NodePath();
NodePath(const NodePath &other);
NodePath(const String& from);
NodePath(const char *contents);
String get_name(const int idx) const;
int get_name_count() const;
String get_subname(const int idx) const;
int get_subname_count() const;
bool is_absolute() const;
bool is_empty() const;
operator String() const;
void operator =(const NodePath& other);
~NodePath();
2017-03-03 00:07:14 +00:00
};
}
#endif // NODEPATH_H