Constructors
Synopses
Declared in <baltzo_zoneinfo.h>
Create a Zoneinfo object having the (default) attribute values.
Zoneinfo();
Create a Zoneinfo object having the same value and the same allocator as the specified original object.
Zoneinfo(bslmf::MovableRef<Zoneinfo> original) noexcept;
Create a Zoneinfo object having default attribute values, using the specified allocator to supply memory.
explicit
Zoneinfo(allocator_type const& allocator);
Create a Zoneinfo object having the same value as the specified original object, using the specified allocator to supply memory.
Zoneinfo(
bslmf::MovableRef<Zoneinfo> original,
allocator_type const& allocator);
Create a Zoneinfo object having the same value as the specified original object.
Zoneinfo(
Zoneinfo const& original,
allocator_type const& allocator = allocator_type());
Parameters
Name |
Description |
original |
the object to move from |
allocator |
the allocator used to supply memory |
Created with MrDocs