blob: c409c222ebc8f7ff85d0bcbe6b8728b581258bfc (
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
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
78
79
80
81
82
83
84
85
86
87
88
|
// $OpenLDAP$
/*
* Copyright 2000-2018 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef STRING_LIST_H
#define STRING_LIST_H
#include <string>
#include <list>
/**
* Container class to store multiple string-objects
*/
class StringList{
typedef std::list<std::string> ListType;
private:
ListType m_data;
public:
typedef ListType::const_iterator const_iterator;
/**
* Constructs an empty list.
*/
StringList();
/**
* Copy-constructor
*/
StringList(const StringList& sl);
/**
* For internal use only
*
* This constructor is used by the library internally to create a
* list of string from a array for c-Strings (char*)thar was
* returned by the C-API
*/
StringList(char** values);
/**
* Destructor
*/
~StringList();
/**
* The methods converts the list to a 0-terminated array of
* c-Strings.
*/
char** toCharArray() const;
/**
* Adds one element to the end of the list.
* @param attr The attribute to add to the list.
*/
void add(const std::string& value);
/**
* @return The number of strings that are currently
* stored in this list.
*/
size_t size() const;
/**
* @return true if there are zero strings currently
* stored in this list.
*/
bool empty() const;
/**
* @return A iterator that points to the first element of the list.
*/
const_iterator begin() const;
/**
* @return A iterator that points to the element after the last
* element of the list.
*/
const_iterator end() const;
/**
* removes all elements from the list
*/
void clear();
};
#endif //STRING_LIST_H
|