14#include "arcane/core/SubDomainBuildInfo.h"
15#include "arcane/core/IParallelMng.h"
30, m_all_replica_parallel_mng(m_parallel_mng)
38SubDomainBuildInfo(Ref<IParallelMng> pm, Int32 index, Ref<IParallelMng> all_replica_pm)
41, m_all_replica_parallel_mng(all_replica_pm)
51 ConstArrayView<std::byte> x{ m_case_content.view() };
55void SubDomainBuildInfo::
56setCaseBytes(ByteConstArrayView bytes)
58 auto d =
reinterpret_cast<const std::byte*
>(bytes.data());
59 m_case_content = ByteConstSpan(d, bytes.size());
65ByteConstSpan SubDomainBuildInfo::
68 return m_case_content;
71void SubDomainBuildInfo::
72setCaseContent(ByteConstSpan content)
74 m_case_content = content;
Reference to an instance.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
ConstArrayView< Byte > ByteConstArrayView
C equivalent of a 1D array of characters.
unsigned char Byte
Type of a byte.
std::int32_t Int32
Signed integer type of 32 bits.