I'm trying to create the following function but keep on getting the 
error above. 
I' using Visual C++ Std Ed. 2005 on XP Professional

Some code segements are below...

No doublt I'm doing something wrong! But at the stage I'm pulling my 
hair out.
Any Tips, Pointers observations would be greatly appreciated.
Thanking you in advance for your time and consideration.

Many Thanks
David

DLLEXPORT FME_MsgNum FME_createFunction(IFMELogFile& logFile,
                                      IFMEMappingFile& mappingFile,
                                      IFMECoordSysManager& 
coordSysMan,
                                      IFMEFunction*& function,
                                      const char* functionName)
{
    // First, keep the references to the FME-owned objects
    // so we can use them later in this module

    gLogFile = &logFile;
    gMappingFile = &mappingFile;
    gCoordSysMan = &coordSysMan;

    function = new KBR;  // This is the line which is causing 
                         // me grief?
  
    return 0;
}

/* in the header file .... */
class KickBackReader  : public IFMEFunction
{
public:









Get the maximum benefit from your FME, FME Objects, or SpatialDirect via our 
Professional Services team.  Visit www.safe.com/services for details. 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/fme/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to