The accessible tag has no wiki summary.
6
votes
7answers
2k views
Why is this not allowed in C++?
Here is my code -
#include<iostream>
using namespace std;
class base
{
private:
public:
void sid()
{
cout<<"base";
}
...
1
vote
2answers
479 views
Rails - CanCan - accessible_by
Can anyone explain to me how CanCan's accessibly_by works? How does it know what the relationship is between the user and the thing that needs restricting?
1
vote
3answers
650 views
How to make enum accessible from other classes in XNA when enum is defined in main game class?
So I have my main game class and have created an enum for game state.
How do I make this enum accessible to other classes? I know you have to make it public but I cant seem to make it accessible to ...
0
votes
1answer
44 views
cakephp ACL: list all documents accessible to the user
I am using cakephp for some time now and just started with ACL. I've got it up and running, except one thing. How can I find all documents available to the current user?
I have several groups (super ...
0
votes
0answers
24 views
accessible web design, checkbox label
I am working on improving the accessibility of a web application. There is a table in which each row represents an item. The first column in every row is a check-box that allows the user to select ...
0
votes
0answers
16 views
Restricted section accessible via URL
I have a static website and my client wants a restricted section, he wants to have a single user and password to grant certain customers access to additional information. I'm doing this by hand-code ...