Update copy/move constructors/operators
Former-commit-id: b1faeeae9211a6c0ca29261d46929dc8c66ea0c4
This commit is contained in:
@@ -24,12 +24,17 @@ class NAZARA_GRAPHICS_API NzAbstractBackground : public NzRefCounted
|
||||
{
|
||||
public:
|
||||
NzAbstractBackground() = default;
|
||||
NzAbstractBackground(const NzAbstractBackground&) = default;
|
||||
NzAbstractBackground(NzAbstractBackground&&) = delete;
|
||||
virtual ~NzAbstractBackground();
|
||||
|
||||
virtual void Draw(const NzAbstractViewer* viewer) const = 0;
|
||||
|
||||
virtual nzBackgroundType GetBackgroundType() const = 0;
|
||||
|
||||
NzAbstractBackground& operator=(const NzAbstractBackground&) = default;
|
||||
NzAbstractBackground& operator=(NzAbstractBackground&&) = delete;
|
||||
|
||||
private:
|
||||
static NzBackgroundLibrary::LibraryMap s_library;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user