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 8739163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:52:38+00:00 2026-06-13T10:52:38+00:00

I want to write an x-macro that generates some code. The code depends on

  • 0

I want to write an x-macro that generates some code. The code depends on several headers and is intended to be generated inside namespaces.

The problem is that the xmacro’s includes are being included inside the namespaces of the caller. Is there any way I can fix this?

Example:

xmacro.hpp:

#include "foo.hpp"
struct bar {
BODY
};
#undef BODY

main.hpp:

namespace ns {
  #define BODY int func();
  #include "xmacro.hpp" // inserting foo.hpp inside namespace ns
}
  • 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-06-13T10:52:39+00:00Added an answer on June 13, 2026 at 10:52 am

    Unfortunately no, because X-macros, while being unique, are still ultimately just included files. This is no different from putting #include <iostream> into your own namespace.

    X-macro includes should really not do anything but contain the target macro (which has a definition yet to be determined). If the use of your X-macro has prerequisites, I would do something like this:

    xmacro_prelude.hpp:

    #ifndef XMACRO_PRELUDE_INCLUDED
    #define XMACRO_PRELUDE_INCLUDED
    
    #include "foo.hpp"
    
    #endif
    

    xmacro.hpp (usually suffixed with .def, by the way):

    #ifndef XMACRO_PRELUDE_INCLUDED
        #error "You must include xmacro_prelude.hpp prior to using this X-macro."
    #endif
    
    struct bar {
    BODY
    };
    
    #undef BODY
    

    main.hpp:

    #include "xmacro_prelude.hpp"
    
    namespace ns {
      #define BODY int func();
      #include "xmacro.hpp"
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a macro for Outlook that is called when I click
I want to write a macro that compares two times that is available in
I want to write a macro that uses functions from the clj-time library. In
Specifically, I want to write a macro that 1) allows me to set a
I want to write an ant macro that will call the fail task if
I want to write a macro that takes as its only argument a list
I want to write a macro in C that accepts any number of parameters,
Let's say that for some reason you need to write a macro: MACRO(X,Y) .
I want to write a Visual Studio macro that switches off optimisations for a
I learned that I need to write a macro if I want users to

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.