13 lines
248 B
C++
13 lines
248 B
C++
#ifndef ORBITHUB_SESSION_BACKEND_FACTORY_H
|
|
#define ORBITHUB_SESSION_BACKEND_FACTORY_H
|
|
|
|
#include "profile_repository.h"
|
|
|
|
#include <memory>
|
|
|
|
class SessionBackend;
|
|
|
|
std::unique_ptr<SessionBackend> createSessionBackend(const Profile& profile);
|
|
|
|
#endif
|