[DEV] remove STL

This commit is contained in:
Edouard DUPIN 2017-09-07 23:38:26 +02:00
parent 5de8451452
commit d4b5ae43b1
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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));