app/integration/AppStateManagerFactory.hpp¶
Factory to create AppStateManager derived classes. More...
Classes¶
| Name | |
|---|---|
| class | AppStateManagerFactory |
Detailed Description¶
Factory to create AppStateManager derived classes.
Date: 2024-02-22 Henrique A. Klein ([email protected])
Source code¶
#ifndef _APP_STATE_MANAGER_FACTORY_HPP_
#define _APP_STATE_MANAGER_FACTORY_HPP_
#include "application/impl/app_state_manager_impl.hpp"
class AppStateManagerFactory
{
public:
static std::shared_ptr<sgns::application::AppStateManager> create()
{
return std::make_shared<sgns::application::AppStateManagerImpl>();
}
};
#endif
Updated on 2026-03-04 at 13:10:44 -0800