Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
101 views

Passing in an Object to an abstract type's constructor in C++

I'm trying to create CnD_Message_Handler of parent type i_MessageHandler. i_MessageHandler constructor takes a i_MessageFactory, another abstract class. CnD_Message_Factory inherits from ...
2
votes
3answers
99 views

How can i convert pointer-method of some class to pointer-function?

Greating everybody! I have a function-pointer method int Myclass::*myMethod(char* a,char* b){ //some code } And try to run it bool Myclass::myMethod2(){ AnotherClass *instance = ...
1
vote
5answers
677 views

C++: using std::wstring in API function

I'm using the SHGetSpecialFolderLocation API function. My application is set to "Use Unicode Character Set". Here's what I have so far: int main ( int, char ** ) { LPITEMIDLIST pidl; HRESULT ...
0
votes
0answers
171 views

How to resolve error C2664 _vswprintf_c_l error in visual studio 2005?

The error shown: Error 11 error C2664: '_vswprintf_c_l' : cannot convert parameter 4 from 'void *' to '_locale_t' C:\Program Files\Microsoft Visual Studio 8\VC\include\swprintf.inl 41 It ...
0
votes
4answers
613 views

error C2664: cannot convert parameter 1 from 'int' to 'int (__cdecl *)(int)'

having some trouble passing a function as a parameter of another function... ERROR: Error 1 error C2664: 'wrapper' : cannot convert parameter 1 from 'int' to 'int (__cdecl *)(int)' int ...
0
votes
2answers
183 views

error C2664 and C2597 in OpenGL and DevIL in C++

I guess this is a two part problem, which is why I couldn't find a more suitable title for the post. I am loading an image using DevIL and then converting it to a familiar format. Here is the part of ...
0
votes
1answer
997 views

error C2664 : 'void std::vector<_Ty>::push_back(_Ty&&)': cannot convert parameter 1 from 'Node<T> *' to 'Node<T>&&'

error C2664 : 'void std::vector<_Ty>::push_back(_Ty&&)': cannot convert parameter 1 from 'Node *' to 'Node&&' please I need help... I created node.h & heap.h node.h : ...
0
votes
2answers
307 views

C2664 error in an attempt to do some OpenGl in c++

Here is an abstract of my code. I'm trying to use glutSpecialFunc to tell glut to use my KeyPress function class Car : public WorldObject { public: void KeyPress(int key, int x, int y) { } ...
0
votes
3answers
3k views

error c2664 upon using basic_string<wchar_t> abc(“hello”) in vc++ 9.0

Hi upon compiling this code in Visual studio 2008 i get the following error #include<iostream> #include<string> using namespace std; void main() { basic_string<wchar_t> ...