This file is indexed.

/usr/include/belcard/belcard_addressing.hpp is in libbelcard-dev 1.0.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
	belcard_addressing.hpp
	Copyright (C) 2015  Belledonne Communications SARL

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef belcard_addressing_hpp
#define belcard_addressing_hpp

#include "belcard_utils.hpp"
#include "belcard_property.hpp"
#include <belr/grammarbuilder.hh>
#include <belr/abnf.hh>

#include <string>
#include <sstream>


namespace belcard {
	class BelCardAddress : public BelCardProperty {
	private:
		std::string _po_box;
		std::string _extended_address;
		std::string _street;
		std::string _locality;
		std::string _region;
		std::string _postal_code;
		std::string _country;
		std::shared_ptr<BelCardLabelParam> _label_param;
		
	public:
		BELCARD_PUBLIC static std::shared_ptr<BelCardAddress> parse(const std::string& input);
		BELCARD_PUBLIC static void setHandlerAndCollectors(belr::Parser<std::shared_ptr<BelCardGeneric>> *parser);
		
		BELCARD_PUBLIC BelCardAddress();
		
		BELCARD_PUBLIC void setPostOfficeBox(const std::string &value);
		BELCARD_PUBLIC const std::string &getPostOfficeBox() const;
		
		BELCARD_PUBLIC void setExtendedAddress(const std::string &value);
		BELCARD_PUBLIC const std::string &getExtendedAddress() const;
		
		BELCARD_PUBLIC void setStreet(const std::string &value);
		BELCARD_PUBLIC const std::string &getStreet() const;
		
		BELCARD_PUBLIC void setLocality(const std::string &value);
		BELCARD_PUBLIC const std::string &getLocality() const;
		
		BELCARD_PUBLIC void setRegion(const std::string &value);
		BELCARD_PUBLIC const std::string &getRegion() const;
		
		BELCARD_PUBLIC void setPostalCode(const std::string &value);
		BELCARD_PUBLIC const std::string &getPostalCode() const;
		
		BELCARD_PUBLIC void setCountry(const std::string &value);
		BELCARD_PUBLIC const std::string &getCountry() const;
		
		BELCARD_PUBLIC void setLabelParam(const std::shared_ptr<BelCardLabelParam> &param);
		BELCARD_PUBLIC const std::shared_ptr<BelCardLabelParam> &getLabelParam() const;
		
		BELCARD_PUBLIC virtual void serialize(std::ostream &output) const;
	};
}

#endif