Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6245821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T12:34:35+00:00 2026-05-24T12:34:35+00:00

Sample.h namespace Testing { enum Type { DATA = 0, MORE_DATA }; } Now

  • 0

Sample.h

namespace Testing
{
    enum Type
    {
        DATA = 0,
        MORE_DATA
    };
}

Now in Sample2.h, using the same namespace, can I access the DataType defined in Sample.h, without including it?

namespace Testing
{
    Type test;
}

The question has come up, because I have files that implement this, and seem to build with no problem.
Another user is trying to build, but reports that he has to #include “Sample.h” in Sample2.h in order to build.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T12:34:36+00:00Added an answer on May 24, 2026 at 12:34 pm

    Yes, you will need to include Sample.h within Sample2.h. The definition of Type is not visible to the compiler within Sample2.h simply because the namespace name is the same within the 2 files.

    The only thing you gain by having the same namespace names in the 2 files is that Type does not need to have its namespace stated explicitly in Sample2.h. For instance, if the 2 namespaces were not the same:

    Sample.h

    namespace Testing
    {
        enum Type
        {
            DATA = 0,
            MORE_DATA
        };
    }
    

    Sample2.h

    #include "Sample.h"
    
    namespace Testing1
    {
        Testing::Type test;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#include<iostream> using namespace std; struct sample { int data[3][2]; }; struct sample* function() {
I can't find a proper way how to access members of boost::variant using boost::phoenix
Given a simple namespaced route map.namespace :api do |api| api.resources :genres end how can
This very simple code: #include <iostream> using namespace std; void exec(char* option) { cout
I'm trying to build a sample game in Silverlight 4 using the MVVM design
How can I mock a DataServiceQuery for unit testing purpose? Long Details follow: Imagine
I have created sample namespace: [demas @arch.local.net ][~/dev/projects/diary]% cat shell_space.clj (ns shell_space) (defn test_fu
edit: I am implementing an algorithm in c++. #include<iostream> #include<math.h> #include<string> using namespace std;
I'm testing a simple DLL, I wrote using C++/CLI, in a CLR console application.
Now I'm solving web server performance testing task and a have a little problem.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.