Is it legal?
class SomeClass {
public:
static void f();
};
using SomeClass::f;
Edit: I forgot to qualify function. Sorry.
|
|
|||
|
|
|
No, it is not. The using keyword is used to bring one or all members from a namespace into the global namespace, so that they can be accessed without specifying the name of the namespace everytime we use the members. In the using statement you have given, the name of the namespace is not provided. Even if you had provided SomeClass there with a statement like Hope this helps. |
||||
|
|
|
I think that You might be thinking of You may be better off with a simple in-line function:
|
||
|