mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 23:01:01 +02:00
33 lines
956 B
C++
33 lines
956 B
C++
//
|
|
// AccountScriptingInterface.cpp
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Stojce Slavkovski on 6/07/14.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "AccountManager.h"
|
|
|
|
#include "AccountScriptingInterface.h"
|
|
|
|
AccountScriptingInterface* AccountScriptingInterface::getInstance() {
|
|
static AccountScriptingInterface sharedInstance;
|
|
return &sharedInstance;
|
|
}
|
|
|
|
bool AccountScriptingInterface::isLoggedIn() {
|
|
AccountManager& accountManager = AccountManager::getInstance();
|
|
return accountManager.isLoggedIn();
|
|
}
|
|
|
|
QString AccountScriptingInterface::getUsername() {
|
|
AccountManager& accountManager = AccountManager::getInstance();
|
|
if (accountManager.isLoggedIn()) {
|
|
return accountManager.getAccountInfo().getUsername();
|
|
} else {
|
|
return "Unknown user";
|
|
}
|
|
}
|