This is what I came up with but it refuses to compile can anyone tell me what is wrong?
class Country
{
public:
std::string CountryName;
std::string PersonsName;
std::string Coords;
};
std::vector <Country> places;
Country d;
int main(int argc...
Back when all fonts were fixed at 8x8 you could use a simple formula saying if you wanted your 2nd column to line up at position 40 it was simple to for (int x = 0; x < 39; x++) print[space]
Now that we have true type fonts how do you implement that so at position 40 (regardless of the font...
I have 2 strings like so
a = Focus
b = Coordination
now I need to call a function like so
m_pCharStats->GetSkill(DecalFilters::eAttributeFocus)
and
m_pCharStats->GetSkill(DecalFilters::eAttributeCoordination)
How can I do this in a compiled framework? In a script environment I could simply...
I have a structure and a function that uses enum XXXX *pVal this and I have never enum like that before. Does anyone have any ideas what parameter I need to create to call the function?
Here is what they look like:
STDMETHOD(get_Training)(/*[out, retval]*/ enum eTrainingType *pVal)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.