MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / Message

Method Message

Examples/NoModules/Chapter 13/Ex13_12A/Message.cpp:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "Message.h"
2
3Message::Message(const Message& message)
4 : Message{ message.m_text } // By far easiest and preferred option: forward to existing constructor!
5{
6}
7
8Message& Message::operator=(const Message& message)
9{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected