Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
670 views

using declaration with enum?

using declaration does not seem to work with enum type class Sample{ public: enum Colour { RED,BLUE,GREEN}; } using Sample::Colour; does not work!! do we need to add using declaration for every ...
0
votes
2answers
614 views

C++ “using” declaration in Visual Studio 2008

I am trying to use google protobuf and they have the following example: using google::protobuf; protobuf::RpcChannel* channel; protobuf::RpcController* controller; SearchService* service; ...