[DEV] remove STL
This commit is contained in:
parent
5de8451452
commit
d4b5ae43b1
@ -22,7 +22,7 @@ namespace eproperty {
|
|||||||
*/
|
*/
|
||||||
class Property {
|
class Property {
|
||||||
public:
|
public:
|
||||||
using Observer = std::function<void()>; //!< Local main object observer of changing value of the property
|
using Observer = etk::Function<void()>; //!< Local main object observer of changing value of the property
|
||||||
private:
|
private:
|
||||||
eproperty::Interface* m_interfaceLink; //!< Base interface class to group all the property
|
eproperty::Interface* m_interfaceLink; //!< Base interface class to group all the property
|
||||||
Observer m_setObserver; //!< Observer of the changing value
|
Observer m_setObserver; //!< Observer of the changing value
|
||||||
|
@ -34,7 +34,7 @@ def configure(target, my_module):
|
|||||||
])
|
])
|
||||||
my_module.add_depend([
|
my_module.add_depend([
|
||||||
'eproperty',
|
'eproperty',
|
||||||
'gtest',
|
'etest',
|
||||||
'test-debug'
|
'test-debug'
|
||||||
])
|
])
|
||||||
return True
|
return True
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include <etk/types.hpp>
|
#include <etk/types.hpp>
|
||||||
#include <etk/etk.hpp>
|
#include <etk/etk.hpp>
|
||||||
#include <test-debug/debug.hpp>
|
#include <test-debug/debug.hpp>
|
||||||
#include <gtest/gtest.h>
|
#include <etest/etest.hpp>
|
||||||
|
|
||||||
int main(int _argc, const char *_argv[]) {
|
int main(int _argc, const char *_argv[]) {
|
||||||
::testing::InitGoogleTest(&_argc, const_cast<char **>(_argv));
|
::testing::InitGoogleTest(&_argc, const_cast<char **>(_argv));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user