C++ boost::mpl::type forward declaration -


i have following type:

typedef boost::mpl::fold<hostobjecttypes, void, base>::type caclientobject; 

and need forward decleration of caclientobject. know how achieve it?

i'd do

struct caclientobject; /* forward */ 

and later

struct caclientobject : boost::mpl::fold<hostobjecttypes, void, base> { }; 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -