I have compiled the dependent files of my source file mycpp.c and linked the files in the order which they have used .All the dependant files are available in the same folder. **//Compilation**
$ g++ -c -w -Wno-deprecated String.c Vector.c DPStream.c CJ_Base.c mycpp.c **//Linking**
$ g++ -g -o myexe String.o Vector.o DPStream.o CJ_Base.o mycpp.o Vector.h
#include <iostream.h>
#include <fstream.h>
#include <iomanip.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include "String.h"
#include "Storage.h"
template <class Object>
class Vector : public Storage{
DPStream.o: In function `DPStream::operator<<(Vector<String>&)':
DPStream.c:(.text+0x396): undefined reference to `Vector<String>::Print(std::basic_ofstream<char, std::char_traits<char> >&)'
mycpp.o: In function `mycpp::ProcessFile()':
mycpp.o:(.text+0x24e): undefined reference to `Vector<String>::operator<<(String&)'
mycpp.o:(.text+0x2e5): undefined reference to `Vector<String>::operator<<(char*)'
mycpp.o:(.text+0x310): undefined reference to `Vector<String>::Flush()'
mycpp.o:(.text+0x32b): undefined reference to `Vector<String>::operator<<(String&)'
mycpp.o:(.text+0x346): undefined reference to `Vector<String>::operator<<(String&
mycpp.o: In function `mycpp::~mycpp()':
mycpp.o:(.text+0x24e): undefined reference to `Vector<String>::operator<<(String&)'
Could you please help me to resolve the issue
Thanks for looking into this
1. Put your specification into a header as usual.
2. Put the implementation into an implementation file with the same name as your header file but suffixed with ".tcc".
3. Include your implementation file at the end of your specification file.
4. Be sure not to include the header file in your implementation file.
Now you may include your header as usual in any other file where needed.