libzeep

PrevUpHomeNext

Struct nonesuch

std::experimental::nonesuch

Synopsis

// In header: <zeep/type-traits.hpp>


struct nonesuch {
  // construct/copy/destruct
  nonesuch() = delete;
  nonesuch(nonesuch const &) = delete;
  void operator=(nonesuch const &) = delete;
  ~nonesuch();
};

Description

nonesuch public construct/copy/destruct

  1. nonesuch() = delete;
  2. nonesuch(nonesuch const &) = delete;
  3. void operator=(nonesuch const &) = delete;
  4. ~nonesuch();

PrevUpHomeNext