Tagged Questions

5
votes
2answers
110 views

Creating an instance of a C++ class and calling methods on it in Python

I am trying to use a C++ library in my python app. I can load the dll in python but could not find any solution on how to create an instance of a class that is inside that c++ dll and invoke methods ...
4
votes
2answers
102 views

How can I instantiate an object knowing only its name? [closed]

Possible Duplicate: Is there a way to instantiate objects from a string holding their class name? In C++, I want to have my user enter the object type name to be created at run-time, and, ...
4
votes
2answers
339 views

C++ Instantiate an object from a class two different ways

I'm pretty sure this has been asked before, but I can't for the life of me find it via search. So here it goes: What's the difference between: MyObj myObj; and MyObj myObj = MyObj(); I believe ...
2
votes
2answers
202 views

how to instantiate template of template

I have template that looks like this: 100 template<size_t A0, size_t A1, size_t A2, size_t A3> 101 struct mask { 103 template<size_t B0, size_t B1, size_t B2, size_t B3> 104 ...
0
votes
3answers
86 views

Instantiating objects and object members

For some reason the following doesn't crash like my program does, but I'm pretty sure it's similar in design. For one, the output's not correct. It outputs something similar to: 0x537ff4 5471612 ...