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

  • SEARCH
  • Home
  • 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

Ask A Question

Stats

  • Questions 175k
  • Answers 175k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer To find common ancestry between two nodes: (node1.ancestors & node2.ancestors).first… May 12, 2026 at 3:09 pm
  • Editorial Team
    Editorial Team added an answer As for references, SS64.com isn't bad. Rob van der Woude… May 12, 2026 at 3:09 pm
  • Editorial Team
    Editorial Team added an answer Could be appdomain startup Asp.net website first start is very… May 12, 2026 at 3:09 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.