Adjust sf::NonCopyable to make use of = default and = delete thus also making it move-enabled.

This commit is contained in:
binary1248 2017-04-08 13:17:02 +02:00
parent f591f0bf5c
commit 842f9be385
No known key found for this signature in database
GPG key ID: E5E52A5D6082224A

View file

@ -47,10 +47,10 @@ protected:
/// ///
/// Because this class has a copy constructor, the compiler /// Because this class has a copy constructor, the compiler
/// will not automatically generate the default constructor. /// will not automatically generate the default constructor.
/// That's why we must define it explicitly. /// That's why we must mark it as defaulted explicitly.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
NonCopyable() {} NonCopyable() = default;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Default destructor /// \brief Default destructor
@ -60,33 +60,49 @@ protected:
/// preventing possible resource leaks. /// preventing possible resource leaks.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
~NonCopyable() {} ~NonCopyable() = default;
private:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Disabled copy constructor /// \brief Disabled copy constructor
/// ///
/// By making the copy constructor private, the compiler will /// By marking the copy constructor as deleted, the compiler
/// trigger an error if anyone outside tries to use it. /// will trigger an error if anyone outside tries to use it.
/// To prevent NonCopyable or friend classes from using it,
/// we also give no definition, so that the linker will
/// produce an error if the first protection was inefficient.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
NonCopyable(const NonCopyable&); NonCopyable(const NonCopyable&) = delete;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Disabled assignment operator /// \brief Disabled copy assignment operator
/// ///
/// By making the assignment operator private, the compiler will /// By marking the copy assignment operator as deleted, the
/// trigger an error if anyone outside tries to use it. /// compiler will trigger an error if anyone outside tries
/// To prevent NonCopyable or friend classes from using it, /// to use it.
/// we also give no definition, so that the linker will
/// produce an error if the first protection was inefficient.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
NonCopyable& operator =(const NonCopyable&); NonCopyable& operator =(const NonCopyable&) = delete;
////////////////////////////////////////////////////////////
/// \brief Default move constructor
///
/// Because this class has all other special member
/// functions user-defined, the compiler will not
/// automatically generate the default move constructor.
/// That's why we must mark it as defaulted explicitly.
///
////////////////////////////////////////////////////////////
NonCopyable(NonCopyable&&) = default;
////////////////////////////////////////////////////////////
/// \brief Default move assignment operator
///
/// Because this class has all other special member
/// functions user-defined, the compiler will not
/// automatically generate the default move assignment
/// operator. That's why we must mark it as defaulted
/// explicitly.
///
////////////////////////////////////////////////////////////
NonCopyable& operator =(NonCopyable&&) = default;
}; };
} // namespace sf } // namespace sf
@ -99,17 +115,18 @@ private:
/// \class sf::NonCopyable /// \class sf::NonCopyable
/// \ingroup system /// \ingroup system
/// ///
/// This class makes its instances non-copyable, by explicitly /// This class makes its instances non-copyable, by
/// disabling its copy constructor and its assignment operator. /// explicitly deleting its copy constructor and its
/// assignment operator.
/// ///
/// To create a non-copyable class, simply inherit from /// To create a non-copyable class, simply inherit from
/// sf::NonCopyable. /// sf::NonCopyable.
/// ///
/// The type of inheritance (public or private) doesn't matter, /// The type of inheritance (public or private) doesn't
/// the copy constructor and assignment operator are declared private /// matter, the copy constructor and assignment operator
/// in sf::NonCopyable so they will end up being inaccessible in both /// are deleted in sf::NonCopyable so they will end up being
/// cases. Thus you can use a shorter syntax for inheriting from it /// inaccessible in both cases. Thus you can use a shorter
/// (see below). /// syntax for inheriting from it (see below).
/// ///
/// Usage example: /// Usage example:
/// \code /// \code
@ -120,10 +137,11 @@ private:
/// \endcode /// \endcode
/// ///
/// Deciding whether the instances of a class can be copied /// Deciding whether the instances of a class can be copied
/// or not is a very important design choice. You are strongly /// or not is a very important design choice. You are
/// encouraged to think about it before writing a class, /// strongly encouraged to think about it before writing a
/// and to use sf::NonCopyable when necessary to prevent /// class, and to use sf::NonCopyable when necessary to
/// many potential future errors when using it. This is also /// prevent many potential future errors when using it. This
/// a very important indication to users of your class. /// is alsoa very important indication to users of your
/// class.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////