![]() |
FlowEngine 8.011
Photogrammetry Software Development Kit
|
#include <CommonDef.h>
Public Member Functions | |
Buffer ()=default | |
Buffer (char *data, Size count) | |
Buffer (std::string &&str)=delete | |
Buffer (std::string &str) | |
Buffer (std::vector< char > &v) | |
operator bool () const | |
Public Attributes | |
Size | count = 0 |
char * | data = nullptr |
Specialization for a Buffer of characters.
|
default |
Represents an empty C string literal.
|
inline |
Implicit conversion from a std::string.
|
inline |
Construction from an arbitrary buffer and size.
|
inline |
Implicit conversion from a std::vector.
|
delete |
Prohibit conversion from a temporary string.
|
inlineexplicit |
Evaluates to true if this buffer holds valid data, false otherwise.
Size FlowEngine::Buffer< char >::count = 0 |
Number of elements the pointer points to.
char* FlowEngine::Buffer< char >::data = nullptr |
Pointer to the mutable data.