12 lines
161 B
C++
12 lines
161 B
C++
#include "SessionData.hpp"
|
|
|
|
namespace UserInterface {
|
|
|
|
SessionData::SessionData(boost::filesystem::path dbPath)
|
|
: _db(dbPath)
|
|
{
|
|
}
|
|
|
|
} // namespace UserInterface
|
|
|