Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template const_entry_type

boost::process::basic_environment::const_entry_type

Synopsis

// In header: <boost/process/environment.hpp>


template<typename Char, typename Environment> 
struct const_entry_type {
  // types
  typedef                              ;   
  typedef                ;      
  typedef   ;  
  typedef  ;        
  typedef                       ;

  // construct/copy/destruct
   () = ;

  // public member functions
   () ;
   () = ;
   () ;
};

Description

Proxy class used for read access to members by [] or .at()

[Note] Note

Holds a reference to the environment it was created from.

const_entry_type public construct/copy/destruct

  1.  () = ;
    Move Constructor.

const_entry_type public member functions

  1.  () ;
    Split the entry by ";" or ":" and return it as a vector. Used by PATH.

    Get the value as string. Get the name of this entry.

  2.  () = ;
    Copy Constructor.
  3.  () ;
    Check if the entry is empty.

PrevUpHomeNext