summaryrefslogtreecommitdiff
path: root/project2/variables.h
blob: 1d4b4baec5d5e5b35710f825b791bca74d42d685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef VARIABLES_H
#define VARIABLES_H

#include <boost/intrusive_ptr.hpp>
#include <boost/optional.hpp>
#include <glibmm/ustring.h>
#include <libxml++/nodes/element.h>
#include <libxml++/attribute.h>
#include "intrusivePtrBase.h"

class RowUser;

class VariableImpl : public virtual IntrusivePtrBase {
	public:
		virtual const Glib::ustring & value() const = 0;

	protected:
		VariableImpl(const Glib::ustring & src);
		const Glib::ustring source;
		Glib::ustring name;
		boost::optional<Glib::ustring> defaultValue;
};

class Variable {
	public:
		typedef boost::intrusive_ptr<VariableImpl> VariableImplPtr;

		Variable(xmlpp::Attribute *);
		Variable(xmlpp::Element *);
		Variable(const Glib::ustring & s);

		operator const Glib::ustring & () const { return var->value(); }
		const Glib::ustring & operator()() const { return var->value(); }
		const Glib::ustring * operator->() const { return &var->value(); }

	private:
		friend class VariableParse;
		static VariableImplPtr create(const Glib::ustring & s, RowUser * dep = NULL);
		VariableImplPtr var;
};

#endif