Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
717 views

why does boost::noncopyable require inheritance

Adding any noncopyable member to a class would prevent the automatic generation of copy construction and assignment operator. Why does boost require inheritance to use noncopyable? I think I am not ...
8
votes
4answers
233 views

C++ const lvalue references

Assuming I have: class A which is non-copyable class B which has as a member, const A& a (and takes an A in its constructer and sets it in its initialization list) a function A GenerateA(); ...
6
votes
4answers
172 views

C++ Non copyable except sometimes

I find that making a class non-copyable helps me a lot with my code quality. Initially I did this with boost::noncopyable, but I found the VC++ compiler errors to be not as helpful as with private ...
6
votes
5answers
1k views

Virtual destructor for boost:noncopyable classes?

I have a question about the following code: class MyClass : private boost::noncopyable { public: MyClass() {} virtual ~MyClass() {} } class OtherClass : private boost::noncopyable { ...
5
votes
1answer
191 views

How to initialize a container of noncopyable with initializer list?

I use gcc 4.6.1 to compile this code int main() { std::vector<std::unique_ptr<int>> vec({ std::unique_ptr<int>(new int(0)), ...
4
votes
2answers
330 views

Putting non-copyable objects into std-containers

Is this class design the standard C++0x way to prevent copy and assign, to protect client code against accidental double-deletion of data? struct DataHolder { int *data; // dangerous resource ...
3
votes
5answers
273 views

c# select text from messagebox.show popup

i've been searching on google and stackoverflow for 2hours now. There has to be something i am just simply overlooking. Is there an easy way to make the text selectable in a messagebox? As of right ...
3
votes
4answers
94 views

Is copying automatically prohibited in classes derived from classed derived from Boost noncopyable?

For example: class Foo : boost::noncopyable { // ... }; class Bar : public Foo { // ... }; Is Bar non-copyable?
3
votes
2answers
759 views

Creating not copyable, but movable, objects in c++

Just a question. Looking at C++ Boost libraries (in particular boost::thread class) I ended up thinking: "how is it possible to create a class defining objects that cannot be copied but that can be ...
2
votes
2answers
131 views

move semantics unused in presence of std::move

With the following: #include <iostream> #include <fstream> using namespace std; int main() { ifstream f; ifstream g; f = std::move(g); } Why is ifstream::operator=(const ...
2
votes
6answers
390 views

Implementation supplied copy constructor and assignment operator

I have a small confusion regarding the situations where the implementation (compiler) will not supply the copy constructor and the copy assignment operator. When we declare the copy ctor and/or copy ...
2
votes
8answers
803 views

How to deal with noncopyable objects when inserting to containers in C++

I'm looking for the best-practice of dealing with non-copyable objects. I have a mutex class, that obviously should not be copyable. I added a private copy constructor to enforce that. That broke ...
2
votes
3answers
864 views

How to create a container of noncopyable elements

Is there a way use STL containters with non-copyable elements? something like this: class noncopyable { noncopyable(noncopyable&); const noncopyable& operator=(noncopyable&); ...
1
vote
2answers
87 views

inheriting noncopyable has no effect in dllexport classes

This is both a question and a way to provide information / warn others so they don't fall into the same trap as I did: it seems that using a noncopyable base class (like the one in boost) has no ...
1
vote
2answers
274 views

What are use cases for booster::noncopyable?

First: is it boost::noncopyable or booster::noncopyable. I have seen both in different places. Why would one want to make a class noncopyable? Can you give some sample use cases?
1
vote
2answers
141 views

How to exclude portions of text when copying

Im trying to make some text non-copyable, my aim isn't to stop people from copying text from my website but more to make it easier to use. I have a list of files with file size's but I want to only ...
1
vote
5answers
809 views

How to make a copyable boost::signal?

I get why boost::signal is noncopyable (it's because copying a signal doesn't have a clear meaning), but I need a version of it that does provide some sort of copy ctor (either a no-op or one that ...
0
votes
1answer
405 views

SFML Input system problem

So I was porting my game engine from SDL to SFML, and now I have a problem with my input system. Input.h #ifndef BULLWHIP_INPUT_H #define BULLWHIP_INPUT_H #include class bc_Input { public: ...
0
votes
5answers
337 views

Is it good practice to generally make heavyweight classes non-copyable?

I have a Shape class containing potentially many vertices, and I was contemplating making copy-constructor/copy-assignment private to prevent accidental needless copying of my heavyweight class (for ...
-1
votes
2answers
30 views

How to stop users from copying or printing text from my web page?

I have a web page (on .Net platform, with C#) with text content and I would like to block users from copying the text or printing the document. If the user is hard out on attaining a copy of the page, ...