comparison libinterp/corefcn/hook-fcn.h @ 31606:dfa5d9c3ae72

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents 2aa5bcaba504 e88a07dec498
children 23664317f0d3
comparison
equal deleted inserted replaced
31604:9ecc95d840ca 31606:dfa5d9c3ae72
34 #include "ovl.h" 34 #include "ovl.h"
35 #include "ov.h" 35 #include "ov.h"
36 #include "ov-fcn-handle.h" 36 #include "ov-fcn-handle.h"
37 #include "variables.h" 37 #include "variables.h"
38 38
39 namespace octave 39 OCTAVE_BEGIN_NAMESPACE(octave)
40 { 40
41 class base_hook_function 41 class base_hook_function
42 { 42 {
43 public: 43 public:
44 44
45 base_hook_function (void) = default; 45 base_hook_function (void) = default;
209 209
210 private: 210 private:
211 211
212 map_type m_fcn_map; 212 map_type m_fcn_map;
213 }; 213 };
214 } 214
215 OCTAVE_END_NAMESPACE(octave)
215 216
216 #endif 217 #endif