NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
buffer.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
24
#ifndef NDN_ENCODING_BUFFER_HPP
25
#define NDN_ENCODING_BUFFER_HPP
26
27
#include "../common.hpp"
28
29
#include <vector>
30
31
namespace
ndn
{
32
33
class
Buffer
;
34
typedef
shared_ptr<const Buffer>
ConstBufferPtr
;
35
typedef
shared_ptr<Buffer>
BufferPtr
;
36
44
class
Buffer
:
public
std::vector<uint8_t>
45
{
46
public
:
49
Buffer
();
50
54
explicit
55
Buffer
(
size_t
size);
56
61
Buffer
(
const
void
*
buf
,
size_t
length);
62
68
template
<
class
InputIterator>
69
Buffer
(InputIterator first, InputIterator last)
70
:
std
::vector<uint8_t>(first, last)
71
{
72
}
73
76
uint8_t*
77
get
()
78
{
79
return
&front();
80
}
81
86
uint8_t*
87
buf
()
88
{
89
return
&front();
90
}
91
95
template
<
class
T>
96
T*
97
get
()
98
{
99
return
reinterpret_cast<
T*
>
(&front());
100
}
101
106
const
uint8_t*
107
buf
()
const
108
{
109
return
&front();
110
}
111
114
const
uint8_t*
115
get
()
const
116
{
117
return
&front();
118
}
119
123
template
<
class
T>
124
const
T*
125
get
()
const
126
{
127
return
reinterpret_cast<
const
T*
>
(&front());
128
}
129
};
130
131
}
// namespace ndn
132
133
#endif // NDN_ENCODING_BUFFER_HPP
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::Buffer::Buffer
Buffer()
Creates an empty buffer.
Definition:
buffer.cpp:38
ndn::BufferPtr
shared_ptr< Buffer > BufferPtr
Definition:
buffer.hpp:35
std
STL namespace.
ndn::Buffer::buf
const uint8_t * buf() const
Definition:
buffer.hpp:107
ndn::Buffer::buf
uint8_t * buf()
Definition:
buffer.hpp:87
ndn::Buffer::Buffer
Buffer(InputIterator first, InputIterator last)
Create a buffer by copying contents of the range [first, last)
Definition:
buffer.hpp:69
ndn::ConstBufferPtr
shared_ptr< const Buffer > ConstBufferPtr
Definition:
buffer.hpp:33
ndn::Buffer
Class representing a general-use automatically managed/resized buffer.
Definition:
buffer.hpp:44
ndnSIM
ndn-cxx
src
encoding
buffer.hpp
Generated on Tue Feb 23 2016 22:18:43 for ndnSIM by
1.8.11