blob: b0cd951817210e514b735c6c730ee5685e26e6e9 (
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
|
#ifndef buffer_manager_hh_INCLUDED
#define buffer_manager_hh_INCLUDED
#include "buffer.hh"
#include <unordered_map>
#include <memory>
namespace Kakoune
{
class BufferManager
{
public:
typedef std::unordered_map<std::string, std::unique_ptr<Buffer>> BufferMap;
struct iterator : public BufferMap::const_iterator
{
typedef BufferMap::const_iterator parent_type;
iterator() {}
iterator(const parent_type& other) : parent_type(other) {}
Buffer& operator*() const { return *(parent_type::operator*().second); }
Buffer* operator->() const { return parent_type::operator*().second.get(); }
};
iterator begin() const { return iterator(m_buffers.begin()); }
iterator end() const { return iterator(m_buffers.end()); }
void register_buffer(Buffer* buffer);
void delete_buffer(Buffer* buffer);
Buffer* get_buffer(const std::string& name);
static BufferManager& instance();
static void delete_instance();
private:
BufferManager();
static BufferManager* ms_instance;
BufferMap m_buffers;
};
}
#endif // buffer_manager_hh_INCLUDED
|