Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 72843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:06:30+00:00 2026-05-10T20:06:30+00:00

I’m trying to create a C++ class, with a templated superclass. The idea being,

  • 0

I’m trying to create a C++ class, with a templated superclass. The idea being, I can easily create lots of similar subclasses from a number of superclasses which have similar characteristics.

I have distilled the problematic code as follows:

template_test.h:

template<class BaseClass> class Templated : public BaseClass     { public:     Templated(int a);     virtual int Foo();     };  class Base     { protected:     Base(int a); public:     virtual int Foo() = 0; protected:     int b;     }; 

template_test.cpp:

#include 'template_test.h'  Base::Base(int a)     : b(a+1)     {     }  template<class BaseClass> Templated<BaseClass>::Templated(int a)     : BaseClass(a)     {     }  template<class BaseClass> int Templated<BaseClass>::Foo()     {     return this->b;     } 

main.cpp:

#include 'template_test.h'  int main()     {     Templated<Base> test(1);     return test.Foo();     } 

When I build the code, I get linker errors, saying that the symbols Templated<Base>::Templated(int) and Templated<Base>::Foo() cannot be found.

A quick Google suggests that adding the following to main.cpp will solve the problem:

template<> Templated<Base>::Templated(int a); template<> int Templated<Base>::Foo(); 

But this does not solve the problem. Adding the lines to main.cpp does not work either. (Though, interestingly, adding them to both gives ‘multiply defined symbol’ errors from the linker, so they must be doing something…)

However, putting all the code in one source file does solve the problem. While this would be ok for the noddy example above, the real application I’m looking at would become unmanageable very fast if I was forced to put the whole lot in one cpp file.

Does anyone know if what I’m doing is even possible? (How) can I solve my linker errors?

I would assume that I could make all the methods in class Templated inline and this would work, but this doesn’t seem ideal either.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:06:30+00:00Added an answer on May 10, 2026 at 8:06 pm

    With templated classes, the definitions must be available for each translation unit that uses it. The definitions can go in a separate file, usually with .inl or .tcc extension; the header file #includes that file at the bottom. Thus, even though it’s in a separate file, it’s still #included for each translation unit; it cannot be standalone.

    So, for your example, rename template_test.cpp to template_test.inl (or template_test.tcc, or whatever), then have #include 'template_test.inl' (or whatever) at the bottom of template_test.h, just before the #endif of the include guard.

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Does anyone know how can I replace this 2 symbol below from the string
I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Seemingly simple, but I cannot find anything relevant on the web. What is the
this is what i have right now Drawing an RSS feed into the php,
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.