Files
ss/include/d/d_s_boot.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

23 lines
437 B
C++

#ifndef D_S_BOOT_H
#define D_S_BOOT_H
#include "d/d_base.h"
#include "s/s_State.hpp"
#include "s/s_StateMgr.hpp"
class dScBoot_c : public dBase_c {
public:
dScBoot_c();
virtual ~dScBoot_c();
STATE_FUNC_DECLARE(dScBoot_c, Init);
STATE_FUNC_DECLARE(dScBoot_c, Strap);
STATE_FUNC_DECLARE(dScBoot_c, Connect);
STATE_FUNC_DECLARE(dScBoot_c, Save);
private:
/* 0x??? */ STATE_MGR_DECLARE(dScBoot_c);
};
#endif