2013-09-10 11:03:37 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* A class for holding the members of a union. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_UnionMember_h
|
|
|
|
#define mozilla_dom_UnionMember_h
|
|
|
|
|
|
|
|
#include "mozilla/Alignment.h"
|
2021-10-18 23:34:39 +03:00
|
|
|
#include "mozilla/Attributes.h"
|
2022-07-28 12:33:09 +03:00
|
|
|
#include <utility>
|
2013-09-10 11:03:37 +04:00
|
|
|
|
2022-05-09 23:41:05 +03:00
|
|
|
namespace mozilla::dom {
|
2013-09-10 11:03:37 +04:00
|
|
|
|
|
|
|
// The union type has an enum to keep track of which of its UnionMembers has
|
|
|
|
// been constructed.
|
|
|
|
template <class T>
|
|
|
|
class UnionMember {
|
|
|
|
AlignedStorage2<T> mStorage;
|
|
|
|
|
2017-02-14 22:23:40 +03:00
|
|
|
// Copy construction can't be supported because C++ requires that any enclosed
|
|
|
|
// T be initialized in a way C++ knows about -- that is, by |new| or similar.
|
|
|
|
UnionMember(const UnionMember&) = delete;
|
|
|
|
|
2013-09-10 11:03:37 +04:00
|
|
|
public:
|
2017-02-14 22:23:40 +03:00
|
|
|
UnionMember() = default;
|
|
|
|
~UnionMember() = default;
|
|
|
|
|
2022-07-28 12:33:09 +03:00
|
|
|
template <typename... Args>
|
|
|
|
T& SetValue(Args&&... args) {
|
|
|
|
new (mStorage.addr()) T(std::forward<Args>(args)...);
|
2013-09-10 11:03:37 +04:00
|
|
|
return *mStorage.addr();
|
|
|
|
}
|
2022-07-28 12:33:09 +03:00
|
|
|
|
2013-09-10 12:13:12 +04:00
|
|
|
T& Value() { return *mStorage.addr(); }
|
2013-09-10 11:03:37 +04:00
|
|
|
const T& Value() const { return *mStorage.addr(); }
|
|
|
|
void Destroy() { mStorage.addr()->~T(); }
|
2021-10-18 23:34:39 +03:00
|
|
|
} MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS;
|
2013-09-10 11:03:37 +04:00
|
|
|
|
2022-05-09 23:41:05 +03:00
|
|
|
} // namespace mozilla::dom
|
2013-09-10 11:03:37 +04:00
|
|
|
|
|
|
|
#endif // mozilla_dom_UnionMember_h
|