Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello friends, I stuck in an error. I have one stl map
C++
std::map<EVideoStandard, TAPIMvFlexEngine> m_mapJEngines;

and I used this map in following way
C++
m_mapJEngines.insert(pair<EVideoStandard, TAPIMvFlexEngine>(UtilityHelper::MvResolutionInfoToVTVideoStandard(sResInfo), pJEngine));	

I got an error as
error C2352: 'UtilityHelper::MvResolutionInfoToVTVideoStandard' : illegal call of non-static member function

UtilityHelper is a class which have a member function as MvResolutionInfoToVTVideoStandard and I pass a structure sResInfo. I defined the member function as
C++
EVideoStandard UtilityHelper::MvResolutionInfoToVTVideoStandard(SMvResolutionInfo sResInfo


Please help me to resolved this error.
Posted
Updated 26-Nov-12 2:38am
v2

1 solution

You are calling UtilityHelper::MvResolutionInfoToVTVideoStandard(sResInfo)
Using the type name "UtilityHelper" rather than calling the function from an instance of UtilityHelper.
Only static functions can be called in this way (i.e. no instance required).
 
Share this answer
 
Comments
Vaibhav_J_Jaiswal 26-Nov-12 8:54am    
Thanx _John, my problem is resolved

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900