diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-02 01:17:27 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-02 01:28:24 -0500 |
| commit | a7aef34839825c6d30056e456e0c9dd3f3e73582 (patch) | |
| tree | fe44ab522cdd25800b50063ec5f8b0eae310a066 /include/d/actor/d_a_obj_search.h | |
| parent | 6829e2e877beaac91fd10259787402d5901c218b (diff) | |
start d_a_bk
Diffstat (limited to 'include/d/actor/d_a_obj_search.h')
| -rw-r--r-- | include/d/actor/d_a_obj_search.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/d/actor/d_a_obj_search.h b/include/d/actor/d_a_obj_search.h index a4a9ed5d..bda38c7f 100644 --- a/include/d/actor/d_a_obj_search.h +++ b/include/d/actor/d_a_obj_search.h @@ -11,14 +11,17 @@ namespace daObj_Search { enum Proc_e { }; - - void getFindFlag() {} + + static bool getFindFlag() { return m_find_flag == true; } + void setFindFlag(bool flag) { m_find_flag = flag; } + + static bool m_find_flag; + void isSecond() {} void modeProcInit(int) {} void setBkControl(bool) {} void setChildId(unsigned int) {} - void setFindFlag(bool) {} - + void _createHeap(); void searchCreateHeap(); void beamCreateHeap(int); |
