Resolving C++ Name Collision
- by jnm2
InitializeQTML is a function in QTML.h. I'm writing a wrapper and I would like to use the name InitializeQTML for the wrapper function:
#include <QTML.h>
public class QuickTime
{
public:
static void InitializeQTML(InitializationFlags flag) {
InitializeQTML((long)flag));
};
};
How can I reference the original InitializeQTML function from inside the wrapper function and avoid the name collision without renaming the wrapper?