1234567891011121314151617181920212223242526272829 |
- #ifndef LS_STD_I_FACTORY_HPP
- #define LS_STD_I_FACTORY_HPP
- #include <memory>
- #include <ls_std/base/Class.hpp>
- namespace ls_std
- {
- class IFactory
- {
- public:
- IFactory() = default;
- ~IFactory() = default;
- virtual std::shared_ptr<ls_std::Class> build() = 0;
- };
- }
- #endif
|