replace the various disable-copy constructions with Q_DISABLE_COPY (or Q_DISABLE_COPY_MOVE)

This commit is contained in:
Heather Anderson 2021-09-18 21:36:35 -07:00
parent 88b0045258
commit 57a3cd3d63
19 changed files with 25 additions and 53 deletions

View file

@ -23,9 +23,7 @@ public:
AvatarAudioStream(bool isStereo, int numStaticJitterFrames = -1);
private:
// disallow copying of AvatarAudioStream objects
AvatarAudioStream(const AvatarAudioStream&);
AvatarAudioStream& operator= (const AvatarAudioStream&);
Q_DISABLE_COPY(AvatarAudioStream)
int parseStreamProperties(PacketType type, const QByteArray& packetAfterSeqNum, int& numAudioSamples) override;
};

View file

@ -23,8 +23,8 @@ public:
private:
// disallow copies of the Head, copy of owning Avatar is disallowed too
MyHead(const Head&);
MyHead& operator= (const MyHead&);
MyHead(const Head&) = delete;
MyHead& operator= (const MyHead&) = delete;
};
#endif // hifi_MyHead_h

View file

@ -44,10 +44,7 @@ protected:
QSharedPointer<Resource> _resource;
private:
// no copies
AnimNodeLoader(const AnimNodeLoader&) = delete;
AnimNodeLoader& operator=(const AnimNodeLoader&) = delete;
Q_DISABLE_COPY(AnimNodeLoader)
};
#endif // hifi_AnimNodeLoader

View file

@ -120,9 +120,7 @@ protected:
std::vector<Transition> _transitions;
private:
// no copies
RandomSwitchState(const RandomSwitchState&) = delete;
RandomSwitchState& operator=(const RandomSwitchState&) = delete;
Q_DISABLE_COPY(RandomSwitchState)
};
public:
@ -181,9 +179,7 @@ protected:
QString _lastPlayedState;
private:
// no copies
AnimRandomSwitch(const AnimRandomSwitch&) = delete;
AnimRandomSwitch& operator=(const AnimRandomSwitch&) = delete;
Q_DISABLE_COPY(AnimRandomSwitch)
};
#endif // hifi_AnimRandomSwitch_h

View file

@ -107,9 +107,7 @@ protected:
std::vector<Transition> _transitions;
private:
// no copies
State(const State&) = delete;
State& operator=(const State&) = delete;
Q_DISABLE_COPY(State)
};
public:
@ -152,9 +150,7 @@ protected:
QString _currentStateVar;
private:
// no copies
AnimStateMachine(const AnimStateMachine&) = delete;
AnimStateMachine& operator=(const AnimStateMachine&) = delete;
Q_DISABLE_COPY(AnimStateMachine)
};
#endif // hifi_AnimStateMachine_h

View file

@ -72,8 +72,7 @@ private:
bool wouldExceedLimits();
AudioInjectorManager() { createThread(); }
AudioInjectorManager(const AudioInjectorManager&) = delete;
AudioInjectorManager& operator=(const AudioInjectorManager&) = delete;
Q_DISABLE_COPY(AudioInjectorManager)
void createThread();

View file

@ -28,9 +28,7 @@ public:
virtual const QUuid& getStreamIdentifier() const override { return _streamIdentifier; }
private:
// disallow copying of InjectedAudioStream objects
InjectedAudioStream(const InjectedAudioStream&);
InjectedAudioStream& operator= (const InjectedAudioStream&);
Q_DISABLE_COPY(InjectedAudioStream)
AudioStreamStats getAudioStreamStats() const override;
int parseStreamProperties(PacketType type, const QByteArray& packetAfterSeqNum, int& numAudioSamples) override;

View file

@ -1887,11 +1887,10 @@ protected:
virtual void clearAvatarGrabData(const QUuid& grabID);
private:
Q_DISABLE_COPY(AvatarData)
friend void avatarStateFromFrame(const QByteArray& frameData, AvatarData* _avatar);
static QUrl _defaultFullAvatarModelUrl;
// privatize the copy constructor and assignment operator so they cannot be called
AvatarData(const AvatarData&);
AvatarData& operator= (const AvatarData&);
};
Q_DECLARE_METATYPE(AvatarData*)

View file

@ -128,9 +128,7 @@ protected:
AvatarData* _owningAvatar;
private:
// privatize copy ctor and assignment operator so copies of this object cannot be made
HeadData(const HeadData&);
HeadData& operator= (const HeadData&);
Q_DISABLE_COPY(HeadData)
void setHeadOrientation(const glm::quat& orientation);
};

View file

@ -163,8 +163,7 @@ private slots:
void postAccountSettingsError(QNetworkReply::NetworkError error);
private:
AccountManager(AccountManager const& other) = delete;
void operator=(AccountManager const& other) = delete;
Q_DISABLE_COPY(AccountManager);
void persistAccountToFile();

View file

@ -27,11 +27,10 @@ public:
qint64 getMaxSegmentSize() const override { return NLPacket::maxPayloadSize(_packetType, _isOrdered); }
private:
Q_DISABLE_COPY(NLPacketList)
NLPacketList(PacketType packetType, QByteArray extendedHeader = QByteArray(), bool isReliable = false,
bool isOrdered = false);
NLPacketList(udt::PacketList&& packetList);
NLPacketList(const NLPacketList& other) = delete;
NLPacketList& operator=(const NLPacketList& other) = delete;
virtual std::unique_ptr<udt::Packet> createPacket() override;

View file

@ -109,9 +109,7 @@ public:
float getOutboundKbps() const;
private:
// privatize copy and assignment operator to disallow Node copying
Node(const Node &otherNode);
Node& operator=(Node otherNode);
Q_DISABLE_COPY(Node)
NodeType_t _type;

View file

@ -156,10 +156,9 @@ private slots:
void maybeSendIgnoreSetToNode(SharedNodePointer node);
private:
Q_DISABLE_COPY(NodeList)
NodeList() : LimitedNodeList(INVALID_PORT, INVALID_PORT) { assert(false); } // Not implemented, needed for DependencyManager templates compile
NodeList(char ownerType, int socketListenPort = INVALID_PORT, int dtlsListenPort = INVALID_PORT);
NodeList(NodeList const&) = delete; // Don't implement, needed to avoid copies of singleton
void operator=(NodeList const&) = delete; // Don't implement, needed to avoid copies of singleton
void processDomainServerAuthRequest(const QByteArray& packet);
void requestAuthForDomainServer();

View file

@ -64,8 +64,7 @@ protected:
SequenceNumber _sendCurrSeqNum; // current maximum seq num sent out
private:
CongestionControl(const CongestionControl& other) = delete;
CongestionControl& operator=(const CongestionControl& other) = delete;
Q_DISABLE_COPY(CongestionControl);
};

View file

@ -48,13 +48,12 @@ public:
void setType(Type type);
private:
Q_DISABLE_COPY(ControlPacket)
ControlPacket(Type type, qint64 size = -1);
ControlPacket(std::unique_ptr<char[]> data, qint64 size, const SockAddr& senderSockAddr);
ControlPacket(ControlPacket&& other);
ControlPacket(const ControlPacket& other) = delete;
ControlPacket& operator=(ControlPacket&& other);
ControlPacket& operator=(const ControlPacket& other) = delete;
// Header read/write
void readType();

View file

@ -84,9 +84,8 @@ private:
friend class PacketQueue;
friend class SendQueue;
friend class Socket;
PacketList(const PacketList& other) = delete;
PacketList& operator=(const PacketList& other) = delete;
Q_DISABLE_COPY(PacketList)
// Takes the first packet of the list and returns it.
template<typename T> std::unique_ptr<T> takeFront();

View file

@ -90,10 +90,9 @@ private slots:
void run();
private:
Q_DISABLE_COPY_MOVE(SendQueue)
SendQueue(Socket* socket, SockAddr dest, SequenceNumber currentSequenceNumber,
MessageNumber currentMessageNumber, bool hasReceivedHandshakeACK);
SendQueue(SendQueue& other) = delete;
SendQueue(SendQueue&& other) = delete;
void sendHandshake();

View file

@ -155,8 +155,8 @@ struct Source {
static const Source& get(uint32_t shaderId);
private:
// Disallow copy construction and assignment
Source(const Source& other) = default;
// Disallow copy construction
Source(const Source& other) = delete;
static Source::Pointer loadSource(uint32_t shaderId) ;

View file

@ -141,7 +141,7 @@ public:
}
private:
MenuUserData(const MenuUserData&);
Q_DISABLE_COPY(MenuUserData);
QMetaObject::Connection _shutdownConnection;
QMetaObject::Connection _changedConnection;