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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:55:44+00:00 2026-06-14T23:55:44+00:00

I am trying to figure out how to get a C++ template to use

  • 0

I am trying to figure out how to get a C++ template to use a look-up table to perform its functions, but at compile time not run time. I am having trouble putting it into words, so here’s an example, and the ugly template + preprocessor macro combination that I have so far:

template<class T_POD, class T_Corba>
inline void c_to_corba_base(T_POD &In, CORBA::Any &Out) {
    Out <<= static_cast<T_Corba>(In);
}

#define C_TO_CORBA_PAIR(T_POD, T_CORBA) \
inline void c_to_corba(T_POD &In, CORBA::Any &Out) { \
    c_to_corba_base<T_POD, T_CORBA>(In, Out); \
}

C_TO_CORBA_PAIR(short, CORBA::Short)
C_TO_CORBA_PAIR(long, CORBA::Long)
C_TO_CORBA_PAIR(double, CORBA::Double)
// etc.

So you can see, it typecasts A to B to get C. C is always CORBA::Any. But B depends on A (known at compile time).

I’ve done some research and it looks like Boost::MPL::bind may do what I need (and we already require Boost) but I do not understand the syntax. It could have all been done in the macro, but I’d rather have it as “real” templates if it can be done.

Any suggestions?

  • 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-14T23:55:45+00:00Added an answer on June 14, 2026 at 11:55 pm

    Is this better?

    template<typename> struct CorbaTypeMap;
    template<> struct CorbaTypeMap<short>  { typedef CORBA::Short  type; };
    template<> struct CorbaTypeMap<long>   { typedef CORBA::Long   type; };
    template<> struct CorbaTypeMap<double> { typedef CORBA::Double type; };
    
    template<typename T_POD>
    inline void c_to_corba(T_POD &In, CORBA::Any &Out) {
        Out <<= static_cast< /* typename */ CorbaTypeMap<T_POD>::type >(In);
    }
    

    I don’t think you’ll need that typename keyword, because static_cast always needs a type, but if you get an error that’ll probably be the fix.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I've been trying to figure out how to use template specialization but ran
I'm trying to figure out to get rid of some spaces that Visual studio
I`m trying to figure out how to get serial and key attributes set for
I'm trying to figure out how to get the visible lines in a IWpfTextView
I'm trying to figure out how to get the index of the current rowspanned
I'm trying to figure out how to get the physical dimensions of a device's
I am trying to figure out how to get a json output in python
I'm trying to figure out how to get the users information after validating via
I'm trying to figure out how to get the distance of an li from
I am trying to figure out how to get the program to create a

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.