Spell checking

This commit is contained in:
DH
2026-02-27 19:46:33 -05:00
parent 063292c7ed
commit fb7c83d04d

View File

@@ -42,7 +42,7 @@
* .
* .
* .
* TypeFsactory <std::string, Base, int> typefactory;
* TypeFactory <std::string, Base, int> typefactory;
* typefactory.registerType<Derived1>("one");
* typefactory.registerType<Derived2>("2");
*
@@ -54,7 +54,7 @@
* @endcode
*/
template<class ClassId, class BaseClass, class ... Args>
class TypeFsactory {
class TypeFactory {
public:
typedef std::shared_ptr<BaseClass> BaseClass_SP;
/**
@@ -62,7 +62,7 @@ class TypeFsactory {
*/
typedef BaseClass_SP (*typefactoryFunction) (Args ...);
TypeFsactory() = default;
TypeFactory() = default;
/**
* @brief registerType - template function to register class in factory