template extending : template class « Class « C++






template extending

  
template <typename T>
class SimpleTemplate
{
 public:
  SimpleTemplate(T &inObject);

  const T& get();
  void set(T& inObject);

 protected:
  T& mObject;
};

template <typename T>
SimpleTemplate<T>::SimpleTemplate(T &inObject) : mObject(inObject)
{
}

template <typename T>
const T& SimpleTemplate<T>::get()
{
  return mObject;
}

template <typename T>
void SimpleTemplate<T>::set(T& inObject)
{
  mObject = inObject;
}

#include <iostream>
#include <string>

using namespace std;

int main(int argc, char** argv)
{
  int i = 7;
  SimpleTemplate<int> intWrapper(i);
  i = 2;
  cout << "wrapper value is " << intWrapper.get() << endl;

  string str = "test";
  SimpleTemplate<string> stringWrapper(str);
  str += "!";
  cout << "wrapper value is " << stringWrapper.get() << endl;
}
  
    
  








Related examples in the same category

1.template class with type parameter
2.template class with generic parameter
3.Demonstrate a very simple safe pointer class.
4.A generic safe-array class that prevents array boundary errors.
5.Get storage off stack for array
6.sequence template
7.Template Version of Generic binary sorted Tree.
8.template class with two generic parameters
9.generic stack template class
10.Using exceptions with templates.
11.Passing by reference and using virtual functions in exceptions.
12.Using Non-Type Arguments with Generic Classes
13.Using Default Arguments with Template Classes
14.Generic Classes: demonstrates a generic stack.
15.An Example with Two Generic Data Types
16.Applying Template Classes: A Generic Array Class
17.Explicit Class Specializations for generic template class