Vivoe Lite 0.5.0
Lightweight GVA like HMI for military displays.
Loading...
Searching...
No Matches
on.h
Go to the documentation of this file.
1//
2// Copyright (c) 2023, DefenceX PTY LTD
3//
4// This file is part of the VivoeX project developed by DefenceX.
5//
6// Licensed under the Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
7// License. See the LICENSE file in the project root for full license details.
8//
12#ifndef HMICORE_STATES_ON_H_
13#define HMICORE_STATES_ON_H_
14
15#include <glog/logging.h>
16
17#include <iostream>
18
19#include "hmicore/gva.h"
20#include "hmicore/hmi_gva.h"
22#include "hmicore/view_gva.h"
25
26namespace gva {
27
29struct StateOn : Hmi {
30 void entry() override;
31};
32
33} // namespace gva
34
35#endif // HMICORE_STATES_ON_H_
State Machine Base Class Declaration.
Definition base_hmi.h:59
The On state.
Definition on.h:29
void entry() override
entry actions in some States
Definition on.cc:23