mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0029961: Foundation Classes - NCollection_Shared constructor passes arguments by copy
New NCollection_Shared constructors taking arguments by reference have been added.
This commit is contained in:
parent
ca0962a1e9
commit
45117bfc1d
@ -43,12 +43,22 @@ public:
|
||||
NCollection_Shared () {}
|
||||
|
||||
//! Constructor with single argument
|
||||
template <typename T1>
|
||||
NCollection_Shared (T1 arg1) : T(arg1) {}
|
||||
template<typename T1> NCollection_Shared (const T1& arg1) : T(arg1) {}
|
||||
|
||||
//! Constructor with single argument
|
||||
template<typename T1> NCollection_Shared (T1& arg1) : T(arg1) {}
|
||||
|
||||
//! Constructor with two arguments
|
||||
template <typename T1, typename T2>
|
||||
NCollection_Shared (T1 arg1, T2 arg2) : T(arg1, arg2) {}
|
||||
template<typename T1, typename T2> NCollection_Shared (const T1& arg1, const T2& arg2) : T(arg1, arg2) {}
|
||||
|
||||
//! Constructor with two arguments
|
||||
template<typename T1, typename T2> NCollection_Shared (T1& arg1, const T2& arg2) : T(arg1, arg2) {}
|
||||
|
||||
//! Constructor with two arguments
|
||||
template<typename T1, typename T2> NCollection_Shared (const T1& arg1, T2& arg2) : T(arg1, arg2) {}
|
||||
|
||||
//! Constructor with two arguments
|
||||
template<typename T1, typename T2> NCollection_Shared (T1& arg1, T2& arg2) : T(arg1, arg2) {}
|
||||
|
||||
/* this could work...
|
||||
//! Forwarding constructor
|
||||
|
Loading…
x
Reference in New Issue
Block a user