summaryrefslogtreecommitdiff
path: root/Examples/python/import_template/spam.h
blob: c72f49a32eeca1880fb538af36a9266856422e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "bar.h"

template<class T> class Spam : public Bar<T> {
 public:
  Spam() { }
  ~Spam() { }
  virtual void A() { 
    printf("I'm Spam::A\n");
  }
  void B() {
    printf("I'm Spam::B\n");
  }
  virtual Base<T> *toBase() {
    return static_cast<Base<T> *>(this);
  }
  virtual Bar<T> *toBar() {
    return static_cast<Bar<T> *>(this);
  }
  static Spam<T> *fromBase(Base<T> *b) {
    return dynamic_cast<Spam<T> *>(b);
  }
};