CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions
ext::basic_imemstream< Item_t, Traits_t, Allocator_t > Class Template Reference

#include <memstream.h>

Inheritance diagram for ext::basic_imemstream< Item_t, Traits_t, Allocator_t >:

Public Types

typedef Traits_t::char_type char_type
 
typedef Traits_t::int_type int_type
 
typedef Traits_t traits_type
 

Public Member Functions

 basic_imemstream (const char_type *buf, size_t size)
 

Private Member Functions

int_type underflow ()
 

Detailed Description

template<typename Item_t, typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
class ext::basic_imemstream< Item_t, Traits_t, Allocator_t >

Definition at line 66 of file memstream.h.

Member Typedef Documentation

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
typedef Traits_t::char_type ext::basic_imemstream< Item_t, Traits_t, Allocator_t >::char_type

Definition at line 69 of file memstream.h.

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
typedef Traits_t::int_type ext::basic_imemstream< Item_t, Traits_t, Allocator_t >::int_type

Definition at line 70 of file memstream.h.

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
typedef Traits_t ext::basic_imemstream< Item_t, Traits_t, Allocator_t >::traits_type

Definition at line 71 of file memstream.h.

Constructor & Destructor Documentation

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
ext::basic_imemstream< Item_t, Traits_t, Allocator_t >::basic_imemstream ( const char_type buf,
size_t  size 
)
inline

Definition at line 73 of file memstream.h.

73  :
74  std::basic_istream<Item_t, Traits_t>(this)
75  {
76  this->exceptions(std::ios_base::badbit);
77  this->setg(const_cast<char_type*>(buf),
78  const_cast<char_type*>(buf),
79  const_cast<char_type*>(buf + size));
80  }
tuple size
Write out results.

Member Function Documentation

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
int_type ext::basic_imemstream< Item_t, Traits_t, Allocator_t >::underflow ( )
inlineprivate

Definition at line 83 of file memstream.h.

84  {
85  if (this->gptr() && this->gptr() < this->egptr())
86  return traits_type::to_int_type(*this->gptr());
87 
88  return traits_type::eof();
89  }