#pragma once #include "JFactory.hpp" #include "JStringImpl.hpp" class JFactoryStringImpl : public JFactory { JString* make() { return new JStringImpl(); } void Release() { if (this)delete this; } };