mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
17 lines
284 B
C++
17 lines
284 B
C++
#include "exam_mode_controller.h"
|
|
|
|
using namespace Poincare;
|
|
using namespace Shared;
|
|
|
|
namespace Settings {
|
|
|
|
GlobalPreferences::ExamMode ExamModeController::examMode() {
|
|
return GlobalPreferences::ExamMode::Standard;
|
|
}
|
|
|
|
int ExamModeController::numberOfRows() const {
|
|
return 1;
|
|
}
|
|
|
|
}
|