blob: a6c59b94c896f25e312c733360dadbe1676c5198 [file] [log] [blame]
template<typename T>
class GenericContainer {
private:
T storage;
public:
GenericContainer(T value) {
storage = value;
};
};
typedef GenericContainer<int> IntContainer;