Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
537 views

C++0x confusion with using declarations

What should happen for this case: struct A { void f(); }; struct B : virtual A { using A::f; }; struct C : virtual A { using A::f; }; struct D : B, C { void g() { f(); } }; The ...
11
votes
2answers
309 views

Namespace using declaration (bug in GCC/VS2010)?

namespace A{ int i; } int main(){ using A::i; using A::i; } VS2010 - compiles fine gcc (ideone) - compiles fine Comeau - gives error ""ComeauTest.c", line 10: error: "i" has already been ...
6
votes
4answers
199 views

Is a using-declaration supposed to hide an inherited virtual function?

struct level0 { virtual void foo() = 0; }; struct level1 : level0 { virtual void foo() { cout <<" level1 " << endl; } }; struct level2 : level1 { virtual void foo() { cout ...
4
votes
7answers
109 views

Is it worth removing “using System” from my files?

Developing a series of POCOs on my project, and just realized that some of them doesn't need the using System; clause. Is there any performance or size penalty for leaving unused using ...
4
votes
3answers
65 views

using declarations and const overloads

Suppose I have two versions of operator-> (overloaded on const) in a base class. If I say using Base::operator->; in a derived class, will I get access to both versions or just the non-const ...
4
votes
3answers
1k views

c++ using declaration, scope and access control

Typically the 'using' declaration is used to bring into scope some member functions of base classes that would otherwise be hidden. From that point of view it is only a mechanism for making accessible ...
3
votes
2answers
268 views

C++ using statement in member function scope

If I want to use a member of a template base class from a template derived class, I have to bring it into scope as such: template <typename T> struct base { void foo(); }; template ...
3
votes
1answer
197 views

Using declaration (Derived class)

struct B1{ int d; void fb(){}; }; struct B2 : B1{ using B1::d; using B1::fb; int d; // why this gives error? void fb(){} // and this does not? }; int main(){} ...
2
votes
2answers
75 views

A way to use all the unqualified names in a C++0x enum class?

The new C++ (C++0x or C++11) has an new kind of enum, an "enum class" where the names are scoped to the enum (among other things). enum class E { VAL1, VAL2 }; void fun() { E e = E::VAL1; ...
2
votes
4answers
385 views

C++ using keyword

What is the difference between these two usage of using keyword: using boost::shared_ptr; and using namespace boost;
2
votes
2answers
719 views

C++: Accessing types from dependent base classes

Does anyone know why using-declarations don't seem to work for importing type names from dependent base classes? They work for member variables and functions, but at least in GCC 4.3, they seem to be ...
1
vote
4answers
88 views

How to use 'Using' keyword in ASP.NET page without code behind

I want to include some namespaces with their classes in my asp.net application. It is possible with using keyword ? I have this: <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" ...
1
vote
4answers
123 views

Declaring using statement after namespace declaration

I am writing a utility library which is made up of several "Packages". The classes in each package are contained in various namespaces. I have an idea as to how I can simplify the situation by ...
1
vote
2answers
109 views

Using-declaration to move name to another namespace?

Given: namespace One { void foo(int x) { munch(x + 1); } }; namespace Two { // ... see later } ... void somewhere() { using namespace Two; foo(42); ... is there any difference ...