WindowsXP/ds/security/passport/common/tools/passportdefaultconstructor.hpp
2025-04-27 07:49:33 -04:00

16 lines
247 B
C++

#ifndef PASSPORTDEFAULTCONSTRUCTOR_HPP
#define PASSPORTDEFAULTCONSTRUCTOR_HPP
template < class T >
class PassportDefaultConstructor
{
public:
T* newObject()
{
return (new T());
}
};
#endif // !PASSPORTDEFAULTCONSTRUCTOR_HPP