xpath_object.h
1/*
2** ClanLib SDK
3** Copyright (c) 1997-2020 The ClanLib Team
4**
5** This software is provided 'as-is', without any express or implied
6** warranty. In no event will the authors be held liable for any damages
7** arising from the use of this software.
8**
9** Permission is granted to anyone to use this software for any purpose,
10** including commercial applications, and to alter it and redistribute it
11** freely, subject to the following restrictions:
12**
13** 1. The origin of this software must not be misrepresented; you must not
14** claim that you wrote the original software. If you use this software
15** in a product, an acknowledgment in the product documentation would be
16** appreciated but is not required.
17** 2. Altered source versions must be plainly marked as such, and must not be
18** misrepresented as being the original software.
19** 3. This notice may not be removed or altered from any source distribution.
20**
21** Note: Some of the libraries ClanLib may link to may have additional
22** requirements or restrictions.
23**
24** File Author(s):
25**
26** Magnus Norddahl
27** Thomas Gottschalk Larsen
28*/
29
30
31#pragma once
32
33#include <memory>
34#include <vector>
35
36namespace clan
37{
40
41 class DomNode;
42 class XPathObject_Impl;
43
46 {
47 public:
49 XPathObject(bool value);
50 XPathObject(double value);
51 XPathObject(size_t value);
52 XPathObject(const std::string &value);
53 XPathObject(const std::vector<DomNode> &value);
54
55 enum Type
56 {
62 };
63
67 Type get_type() const;
68
72 bool is_null() const;
73
74 std::vector<DomNode> get_node_set() const;
75
79 bool get_boolean() const;
80
84 double get_number() const;
85
89 std::string get_string() const;
90
92 void set_null();
93
97 void set_node_set(const std::vector<DomNode> &node_set);
98
102 void set_boolean(bool value);
103
107 void set_number(double value);
108
112 void set_string(const std::string &str);
113
114 private:
115 std::shared_ptr<XPathObject_Impl> impl;
116 };
117
119}
XPath result object.
Definition: xpath_object.h:46
double get_number() const
Get Number.
XPathObject(const std::vector< DomNode > &value)
bool get_boolean() const
Get Boolean.
Type get_type() const
Get Type.
std::string get_string() const
Get String.
Type
Definition: xpath_object.h:56
@ type_string
Definition: xpath_object.h:61
@ type_number
Definition: xpath_object.h:60
@ type_node_set
Definition: xpath_object.h:58
@ type_boolean
Definition: xpath_object.h:59
@ type_null
Definition: xpath_object.h:57
XPathObject(bool value)
XPathObject(const std::string &value)
void set_null()
Set null.
void set_boolean(bool value)
Set boolean.
XPathObject(double value)
void set_number(double value)
Set number.
bool is_null() const
Is Null.
void set_node_set(const std::vector< DomNode > &node_set)
Set node set.
XPathObject(size_t value)
std::vector< DomNode > get_node_set() const
void set_string(const std::string &str)
Set string.
Definition: clanapp.h:36