![]() |
Home | Libraries | People | FAQ | More |
boost::process::v1::basic_environment::const_entry_type
// In header: <boost/process/v1/environment.hpp> template<typename Char, typename Environment> struct const_entry_type { // types typedef Char value_type; typedef const value_type * pointer; typedef std::basic_string< value_type > string_type; typedef boost::iterator_range< pointer > range; typedef Environment environment_t; // public member functions std::vector< string_type > to_vector() const; const_entry(const const_entry &) = default; const_entry & operator=(const const_entry &) = default; bool empty() const; };
Proxy class used for read access to members by [] or .at()
![]() |
Important |
---|---|
Holds a reference to the environment it was created from. |
const_entry_type
public member functionsstd::vector< string_type > to_vector() const;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.
const_entry(const const_entry &) = default;Copy Constructor.
const_entry & operator=(const const_entry &) = default;Move Constructor.
bool empty() const;Check if the entry is empty.