mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00
13 lines
193 B
C++
13 lines
193 B
C++
template<typename T>
|
|
class GenericContainer {
|
|
private:
|
|
T storage;
|
|
|
|
public:
|
|
GenericContainer(T value) {
|
|
storage = value;
|
|
};
|
|
};
|
|
|
|
typedef GenericContainer<int> IntContainer;
|