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 | Private Attributes
ext::basic_omemstream< Item_t, Traits_t, Allocator_t > Class Template Reference

#include <memstream.h>

Inheritance diagram for ext::basic_omemstream< 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_omemstream (char_type *buf, size_t size)
 
char_typebegin () const
 
bool empty () const
 
char_typeend () const
 
size_t size () const
 

Private Member Functions

int_type overflow (int_type c)
 
int sync ()
 
std::streamsize xsputn (char_type const *data, std::streamsize size)
 

Private Attributes

char_typebuffer
 
char_typecur
 
char_typelast
 

Detailed Description

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

Definition at line 24 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_omemstream< Item_t, Traits_t, Allocator_t >::char_type

Definition at line 27 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_omemstream< Item_t, Traits_t, Allocator_t >::int_type

Definition at line 28 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_omemstream< Item_t, Traits_t, Allocator_t >::traits_type

Definition at line 29 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_omemstream< Item_t, Traits_t, Allocator_t >::basic_omemstream ( char_type buf,
size_t  size 
)
inline

Definition at line 31 of file memstream.h.

31  :
32  std::basic_ostream<Item_t, Traits_t>(this),
33  buffer(buf), cur(buf), last(buf + size)
34  { this->exceptions(std::ios_base::badbit); }
char_type * buffer
Definition: memstream.h:62
char_type * cur
Definition: memstream.h:62
char_type * last
Definition: memstream.h:62
size_t size() const
Definition: memstream.h:38

Member Function Documentation

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
char_type* ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::begin ( void  ) const
inline

Definition at line 36 of file memstream.h.

References ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::buffer.

36 { return buffer; }
char_type * buffer
Definition: memstream.h:62
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
bool ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::empty ( void  ) const
inline
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
char_type* ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::end ( void  ) const
inline

Definition at line 37 of file memstream.h.

References ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::cur.

37 { return cur; }
char_type * cur
Definition: memstream.h:62
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
int_type ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::overflow ( int_type  c)
inlineprivate

Definition at line 49 of file memstream.h.

References trackerHits::c, lumiQTWidget::t, and ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::xsputn().

50  {
51  if (!traits_type::eq_int_type(c, traits_type::eof())) {
52  char_type t = traits_type::to_char_type(c);
53  if (xsputn(&t, 1) < 1)
54  return traits_type::eof();
55  }
56 
57  return c;
58  }
Traits_t::char_type char_type
Definition: memstream.h:27
std::streamsize xsputn(char_type const *data, std::streamsize size)
Definition: memstream.h:42
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
size_t ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::size ( void  ) const
inline
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
int ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::sync ( )
inlineprivate

Definition at line 60 of file memstream.h.

60 { return 0; }
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
std::streamsize ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::xsputn ( char_type const *  data,
std::streamsize  size 
)
inlineprivate

Member Data Documentation

template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
char_type* ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::buffer
private
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
char_type * ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::cur
private
template<typename Item_t , typename Traits_t = std::char_traits<Item_t>, typename Allocator_t = std::allocator<Item_t>>
char_type * ext::basic_omemstream< Item_t, Traits_t, Allocator_t >::last
private