Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a template class in C++ and getting this strange linker error and can't figureout the cause, please let me know whats wrong with this!

Here is the error message I am getting in Visula C++ 2010.

1>------ Rebuild All started: Project: FlashEmulatorTemplates, Configuration: Debug Win32 ------
1>  main.cpp
1>  emulator.cpp
1>  Generating Code...
1>main.obj : error LNK2019: unresolved external symbol "public: __thiscall flash_emulator<char>::flash_emulator<char>(char const *,struct FLASH_PROPERTIES *)" (??0?$flash_emulator@D@@QAE@PBDPAUFLASH_PROPERTIES@@@Z) referenced in function _main
1>C:\Projects\FlashEmulator_templates\VS\FlashEmulatorTemplates\Debug\FlashEmulatorTemplates.exe : fatal error LNK1120: 1 unresolved externals
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========

Error message in g++

main.cpp: In function âint main()â:
main.cpp:8: warning: deprecated conversion from string constant to âchar*â
/tmp/ccOJ8koe.o: In function `main':
main.cpp:(.text+0x21): undefined reference to `flash_emulator<char>::flash_emulator(char*, FLASH_PROPERTIES*)'
collect2: ld returned 1 exit status

There are 2 .cpp files and 1 header file, and I have given them below.

emulator.h

#ifndef __EMULATOR_H__
#define __EMULATOR_H__

typedef struct {
    int property;
}FLASH_PROPERTIES ;

/* Flash emulation class */
template<class T>
class flash_emulator
{
private:
    /* Private data */
    int key;    

public:
    /* Constructor - Opens an existing flash by name flashName or creates one with 
       given FLASH_PROPERTIES if it doesn't exist */
    flash_emulator( const char *flashName, 
                       FLASH_PROPERTIES *properties );

    /* Constructor - Opens an existing flash by name flashName or creates one with 
       given properties given in configFIleName */
    flash_emulator<T>( char *flashName, 
                       char *configFileName );

    /* Destructor for the emulator */
    ~flash_emulator(){
    }
};

#endif  /* End of __EMULATOR_H__  */

emulator.cpp

#include <Windows.h>
#include "emulator.h"

using namespace std;


template<class T>flash_emulator<T>::flash_emulator( const char *flashName, 
                                                    FLASH_PROPERTIES *properties ) 
{
    return;
}

template<class T>flash_emulator<T>::flash_emulator(char *flashName,
                                char *configFileName)
{
    return;
}

main.cpp

#include <Windows.h>
#include "emulator.h"

int main()
{
    FLASH_PROPERTIES properties = {0};
    flash_emulator<char> myEmulator("C:\newEMu.flash", &properties);

    return 0;
}
share|improve this question

1 Answer

up vote 5 down vote accepted

You have to define template functions in visible headers.

Move the definition of

template<class T> flash_emulator<T>::flash_emulator( const char *flashName, 
                                   FLASH_PROPERTIES *properties )

and

template<class T> flash_emulator<T>::flash_emulator(char *flashName,
                            char *configFileName)

from emulator.cpp into emulator.h.

share|improve this answer
Thanks!!! But, is there no way I can define my functions in different source files!!! Putting all my functions in header itself makes it look ugly isn't it? I am supposed to give this code as a library, so in that case, I will have just one big emulator.h file in my project! – Microkernel Apr 1 '12 at 5:15
@Microkernel: Yes, that's the way you need to do template functions. The popular Boost library is almost entirely implemented in header files. – Greg Hewgill Apr 1 '12 at 5:17
@Microkernel: This is known as a header-only library and is quite a common paradigm in C++. Feel good about the fact that C++ header only libraries can leap tall buildings and are faster than a speeding bullet. The compiler can do all sorts of compile-time optimizations not otherwise possible. – user1131467 Apr 1 '12 at 5:17
Oh OK :) I come from C back ground, so this feels bit weird... So, if my library is used in say 10 other source files, so when header files are replaced by their contents by C++ compiler, I will be having 10 definitions of same functions right?! Thanks :) – Microkernel Apr 1 '12 at 5:25
2  
@Microkernel don't worry, identical copies will be linked out, you won't have redundant code. – littleadv Apr 1 '12 at 5:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.