I'm implementing some ideas using templates and static members. Although the "real" code produces another error, this is the one which i still have on a toy example code
#include <string>
#include <iostream>
template<int dim>
class Class1 {
  public:
     Class1() {};
    ~Class1() {};
     void foo() {
        std::cout<<"foo-1"<<std::endl;
     }
   protected:
     std::string name;
};
template<int dim>
class Class2 : public Class1<dim>
{
  public:
     Class2(const int & a, const int &b) : 
        number( Class2<dim>::id_generator++ ) 
     {
        Class1<dim>::name = "My-name"; 
        foo(); // (1)
      };
 void foo() {
    Class1<dim>::foo();
    std::cout<<"foo-2"<<std::endl;
 }
 private:
    const unsigned int number;
    static unsigned int id_generator;
};
 int main() 
 {
    int a = 1, b=2;
    Class2<2> class2(a,b);   // (2)
 }
with the linker error:
 undefined reference to `Class2<2>::id_generator' 
rea-life example produces 2 errors
 (1) required from 'Class2<dim>::Class2(int, int) [with int dim = 3]'
 (2) required from here.
that real-life errors tell me absolutely nothing at all! :( I hope if the toy-problem is solved, the real-life one will be gone too, but if anyone has any ideas on the "real-life" errors (those 2 lines) in the context of the structure, pls, let me know.