Woodylepic
New member
- Joined
- Dec 29, 2009
- Messages
- 71
- Reaction score
- 0
- Points
- 0
Just for clarification... instead of this:
you have this in your cpp?Code:bool CPylon::IsSequenceValid(int inputInteger) { // your code here return true; }
If so, you'd have to replace it with this:Code:bool CPylon::IsSequenceValid(int inputInteger) { // your code here here it is bool CPylon::IsSequenceValid(int index) { if (index<0 || index >= numSeq) return false; SelectSequence(index); return curSeq->valid; return true; }
regards,Code:bool CPylon::IsSequenceValid(int inputInteger) { if (inputInteger<0 || inputInteger>= numSeq) return false; SelectSequence(inputInteger); return curSeq->valid; }
Face
int CPylon::GetSequenceType(int inputInteger)
h file
virtual bool SetParamBol(int inputInteger, bool value);//devolver bool que indica si ya ha terminado na mas. , PylSequence *caller = NULL);
I have change all the int index by (int inputInteger) on both h file and cpp and nothing change I got the same error
1>PYLONMFD.obj : error LNK2019: symbole externe non rsolu "public: int __thiscall CPylon::GetSequenceType(int)" (?GetSequenceType@CPylon@@QAEHH@Z) rfrenc dans la fonction "public: void __thiscall PylonMFD::selectPrevParam(void)" (?selectPrevParam@PylonMFD@@QAEXXZ)