access-protection Questions
10
Solved
I would like to create a web site with many images. But I would like to protect against direct access to images, e.g. direct links to images without visiting the web site.
What is the prefer...
Isagogics asked 21/10, 2010 at 17:44
3
Solved
Can we increase the re-usability for this key-oriented access-protection pattern:
class SomeKey {
friend class Foo;
// more friends... ?
SomeKey() {}
// possibly non-copyable too
};
class B...
Pongee asked 24/7, 2010 at 11:27
4
Solved
Apparently this key-oriented access-protection pattern:
class SomeKey {
friend class Foo;
SomeKey() {}
// possibly non-copyable too
};
class Bar {
public:
void protectedMethod(SomeKey); // ...
Gault asked 24/7, 2010 at 7:33
1
© 2022 - 2024 — McMap. All rights reserved.