Tagged Questions
-2
votes
1answer
39 views
Unique pointer to stream
#include <memory>
#include <istream>
typedef std::unique_ptr<std::istream> myType;
class myClass{
myType myStream;
public:
myClass(myType a_stream){
myStream = ...
2
votes
2answers
119 views
How do I make only a single call to the move-constructor?
How do I make the code below only call the move-constructor once?
OUTPUT
MC
MC
CODE
#include <vector>
#include <map>
#include <memory>
#include <iostream>
struct Bar
{
...
0
votes
2answers
121 views
Prevent moving of a unique_ptr C++11
Is there any way to prevent a user to explicity take ownership of a unique pointer with
std::move
?
5
votes
1answer
191 views
Thread safe unique_ptr move
Is it possible to safely move unique_ptr with c++11 atomic operations?
Currently I have a code like this
std::unique_ptr<SyncToken> DataManager::borrowSyncToken()
{
...
0
votes
1answer
151 views
Templated move ctor for wrapped unique_ptr
I want something that's like unique_ptr, but guaranteed (within reason) to be non-null. I wrote this class that contains a unique_ptr, and I wrote this move constructor that I'd hoped would allow me ...
-1
votes
1answer
121 views
Is this a proper application of the rule of five with abstract base class and unique_ptr member?
Trying to resolve error C2248 related to abstract base class using implementation of copy/move ctors/assignment operators and dtor (Rule of Five) and a few questions come up:
1) Why does the rule of ...
6
votes
1answer
479 views
The move function in unique_ptr C++03 emulation
I'm trying to understand how C++03 emulation of unique_ptr is implemented. unique_ptr is quite like std::auto_ptr but safer. It spits out compiler errors in cases where auto_ptr would have transferred ...