aurum: Use Aurum namespace 99/265399/6
authorWoochanlee <wc0917.lee@samsung.com>
Mon, 18 Oct 2021 07:28:04 +0000 (16:28 +0900)
committerWoochanlee <wc0917.lee@samsung.com>
Fri, 5 Nov 2021 01:36:07 +0000 (10:36 +0900)
This is for prepare Aurum 1.0 version release.

namespaces - Aurum for public classes
             AurumInternal for internal headers such as atspi, impl classes
             AurumInternal::Mock for Mock wrapper.

We will add more namespace if we added other back-end instead of ATSPI,
or other Node type needed.

Change-Id: Ia47ff40387d322e3e0932b3b0cda45b0d4a5f19a

67 files changed:
libaurum/inc/A11yEvent.h
libaurum/inc/Accessibility/AccessibleApplication.h
libaurum/inc/Accessibility/AccessibleNode.h
libaurum/inc/Accessibility/AccessibleWatcher.h
libaurum/inc/Accessibility/AccessibleWindow.h
libaurum/inc/Accessibility/IEventConsumer.h
libaurum/inc/Accessibility/IEventSource.h
libaurum/inc/Comparer.h
libaurum/inc/Impl/Accessibility/AtspiAccessibleApplication.h
libaurum/inc/Impl/Accessibility/AtspiAccessibleNode.h
libaurum/inc/Impl/Accessibility/AtspiAccessibleWatcher.h
libaurum/inc/Impl/Accessibility/AtspiAccessibleWindow.h
libaurum/inc/Impl/Accessibility/AtspiWrapper.h
libaurum/inc/Impl/Accessibility/MockAccessibleApplication.h
libaurum/inc/Impl/Accessibility/MockAccessibleNode.h
libaurum/inc/Impl/Accessibility/MockAccessibleWatcher.h
libaurum/inc/Impl/Accessibility/MockAccessibleWindow.h
libaurum/inc/Impl/MockDeviceImpl.h
libaurum/inc/Impl/TizenDeviceImpl.h
libaurum/inc/Interface/IDevice.h
libaurum/inc/Interface/ISearchable.h
libaurum/inc/Misc/Point2D.h
libaurum/inc/Misc/Rect.h
libaurum/inc/Misc/Size2D.h
libaurum/inc/Misc/bitmask.h
libaurum/inc/PartialMatch.h
libaurum/inc/Runnable/Runnable.h
libaurum/inc/Runnable/SendKeyRunnable.h
libaurum/inc/Sel.h
libaurum/inc/UiDevice.h
libaurum/inc/UiObject.h
libaurum/inc/UiScrollable.h
libaurum/inc/UiSelector.h
libaurum/inc/Until.h
libaurum/inc/Waiter.h
libaurum/src/A11yEvent.cc
libaurum/src/Accessibility/AccessibleApplication.cc
libaurum/src/Accessibility/AccessibleNode.cc
libaurum/src/Accessibility/AccessibleWatcher.cc
libaurum/src/Accessibility/AccessibleWindow.cc
libaurum/src/Comparer.cc
libaurum/src/Impl/Accessibility/AtspiAccessibleApplication.cc
libaurum/src/Impl/Accessibility/AtspiAccessibleNode.cc
libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc
libaurum/src/Impl/Accessibility/AtspiAccessibleWindow.cc
libaurum/src/Impl/Accessibility/AtspiWrapper.cc
libaurum/src/Impl/Accessibility/MockAccessibleApplication.cc
libaurum/src/Impl/Accessibility/MockAccessibleNode.cc
libaurum/src/Impl/Accessibility/MockAccessibleWatcher.cc
libaurum/src/Impl/Accessibility/MockAccessibleWindow.cc
libaurum/src/Impl/MockDeviceImpl.cc
libaurum/src/Impl/TizenDeviceImpl.cc
libaurum/src/PartialMatch.cc
libaurum/src/Runnable/SendKeyRunnable.cc
libaurum/src/Sel.cc
libaurum/src/UiDevice.cc
libaurum/src/UiObject.cc
libaurum/src/UiScrollable.cc
libaurum/src/UiSelector.cc
libaurum/src/Until.cc
libaurum/src/Waiter.cc
org.tizen.aurum-bootstrap/inc/ObjectMapper.h
tests/Test_Misc.cc
tests/Test_Sel.cc
tests/Test_UiDevice.cc
tests/Test_UiObject.cc
tests/Test_UiSelector.cc

index f7b23bd..c557979 100644 (file)
@@ -21,6 +21,8 @@
 #include "bitmask.h"
 #include <string>
 
+namespace Aurum {
+
 /**
  * @class A11yEvent
  *
@@ -144,4 +146,6 @@ protected:
     const std::string mPkg;
 };
 
+}
+
 #endif
index 097d141..3a6daa0 100644 (file)
@@ -23,6 +23,8 @@
 
 #include <memory>
 
+namespace Aurum {
+
 /**
  * @class AccessibleApplication
  *
@@ -98,4 +100,6 @@ private:
     std::shared_ptr<AccessibleNode> mNode;
 };
 
+}
+
 #endif
index a6956a4..b8b8d12 100644 (file)
@@ -28,6 +28,8 @@
 #include "Rect.h"
 #include "config.h"
 
+namespace Aurum {
+
 /**
  * @brief AccessibleNodeInterface enum class
  *
@@ -424,4 +426,6 @@ private:
     mutable std::mutex mLock;
 };
 
+}
+
 #endif
index d2977f2..cfaf72b 100644 (file)
@@ -33,6 +33,8 @@
 
 #include "config.h"
 
+namespace Aurum {
+
 /**
  * @class AccessibleWatcher
  *
@@ -146,4 +148,6 @@ private:
     std::mutex mLock;
 };
 
+}
+
 #endif
index f422d68..3d2c258 100644 (file)
@@ -23,6 +23,8 @@
 #include <string>
 #include <memory>
 
+namespace Aurum {
+
 class AccessibleApplication;
 
 /**
@@ -103,4 +105,6 @@ private:
     std::shared_ptr<AccessibleNode> mNode;
 };
 
+}
+
 #endif
index d8cd29a..b7c0557 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef _IEVENT_CONSUMER_H_
 #define _IEVENT_CONSUMER_H_
 
+namespace Aurum {
+
 /**
  * @class EventType
  *
@@ -71,4 +73,6 @@ public:
     virtual void notify(int type1, int type2, void *src) = 0;
 };
 
+}
+
 #endif
index d1f6ce4..73f5c34 100644 (file)
@@ -21,6 +21,8 @@
 #include "IEventConsumer.h"
 #include <memory>
 
+namespace Aurum {
+
 /**
  * @class IEventSource
  *
@@ -68,4 +70,6 @@ public:
     virtual void notifyAll(int type1, int type2, void *src) = 0;
 };
 
+}
+
 #endif
index ae1ccab..c64afeb 100644 (file)
@@ -30,6 +30,8 @@
 #include <memory>
 #include <vector>
 
+namespace Aurum {
+
 /**
  * @class Comparer
  *
@@ -127,4 +129,6 @@ private:
     bool mEarlyReturn;
 };
 
+}
+
 #endif
index a6cdb80..2bdcbac 100644 (file)
 #include <memory>
 #include <atspi/atspi.h>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
 /**
  * @internal
  *
@@ -63,4 +67,6 @@ public:
     std::string getPackageName(void) override;
 };
 
+}
+
 #endif
index b916c1b..2935faa 100644 (file)
 #include "AccessibleNode.h"
 #include <atspi/atspi.h>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
 /**
  * @brief AtspiAccessibleNode is inherited from AccessibleNode class.
  *        It manages object informations which from atspi server.
@@ -144,4 +148,6 @@ private:
     AtspiAccessible *mNode;
 };
 
+}
+
 #endif
index f4ed61f..8ce234b 100644 (file)
 #include <set>
 #include <map>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
 /**
  * @internal
  *
@@ -157,4 +161,6 @@ private:
     static std::mutex mMutex;
 };
 
+}
+
 #endif
index e9d6f71..1e71af3 100644 (file)
 
 #include "AccessibleWindow.h"
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
 /**
  * @internal
  *
@@ -50,4 +54,6 @@ public:
 
 };
 
+}
+
 #endif
index ee603d6..b3928fb 100644 (file)
@@ -21,6 +21,8 @@
 #include <atspi/atspi.h>
 #include <mutex>
 
+namespace AurumInternal {
+
 /**
  * @internal
  *
@@ -61,4 +63,6 @@ private:
     static std::recursive_mutex mMutex;
 };
 
+}
+
 #endif
index c2e03e8..942e779 100644 (file)
 
 #include <memory>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
+namespace Mock {
+
 class MockAccessibleApplication : public AccessibleApplication, public std::enable_shared_from_this<MockAccessibleApplication> {
 public:
     /**
@@ -83,4 +89,8 @@ private:
     std::vector<std::shared_ptr<AccessibleWindow>> mWindowList;
 };
 
+}
+
+}
+
 #endif
index 67cde40..110b6e1 100644 (file)
 #include <mutex>
 #include <set>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
+namespace Mock {
+
 class MockAccessibleNode : public AccessibleNode {
 public:
     /**
@@ -202,4 +208,8 @@ private:
     std::mutex                            mLock;
 };
 
+}
+
+}
+
 #endif
index 18dd60d..b36381a 100644 (file)
 #include <memory>
 #include <vector>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
+namespace Mock {
+
 class MockAccessibleWatcher : public AccessibleWatcher {
 public:
     /**
@@ -91,4 +97,8 @@ private:
     std::map<AtspiAccessible *, std::shared_ptr<AccessibleApplication>> mActiveAppMap;
 };
 
+}
+
+}
+
 #endif
index a978089..df214ef 100644 (file)
 #include "AccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
+namespace Mock {
+
 class MockAccessibleApplication;
 
 class MockAccessibleWindow : public AccessibleWindow {
@@ -51,4 +57,8 @@ private:
     std::shared_ptr<MockAccessibleNode> mMockNode;
 };
 
+}
+
+}
+
 #endif
\ No newline at end of file
index 93705c1..7517471 100644 (file)
 #include <vector>
 #include <map>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
+namespace Mock {
+
 enum class MockKeyType {
     BACK,
     HOME,
@@ -294,4 +300,8 @@ public:
     Size2D<int> mScreenSize;
 };
 
+}
+
+}
+
 #endif
index 0bcbff9..4e16377 100644 (file)
 #include <set>
 #include <efl_util.h>
 
+using namespace Aurum;
+
+namespace AurumInternal {
+
 class TizenDeviceImpl : public IDevice {
 public:
     TizenDeviceImpl();
@@ -198,4 +202,6 @@ private:
     Size2D<int> mScreenSize;
 };
 
+}
+
 #endif
\ No newline at end of file
index 85b213e..5d979d6 100644 (file)
 #define _IDEVICE_H_
 
 #include "config.h"
-#include "Rect.h"
 #include "Size2D.h"
 #include <string>
 
+namespace Aurum {
+
 /**
  * @brief TimeRequestType enum class.
  *
@@ -277,4 +278,6 @@ public:
     virtual const Size2D<int> getScreenSize() = 0;
 };
 
+}
+
 #endif
index fe25b09..e02bbcf 100644 (file)
@@ -25,6 +25,8 @@
 #include <memory>
 #include <vector>
 
+namespace Aurum {
+
 class UiObject;
 
 /**
@@ -79,4 +81,6 @@ public:
         const std::shared_ptr<UiSelector> selector) const = 0;
 };
 
+}
+
 #endif
index 1baddb9..634d779 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef _POINT2D_H_
 #define _POINT2D_H_
 
+namespace Aurum {
+
 /**
  * @class Point2D
  *
@@ -94,4 +96,6 @@ public:
     T y;
 };
 
+}
+
 #endif
index 5984670..9d935ed 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "Point2D.h"
 
+namespace Aurum {
+
 /**
  * @class Rect
  *
@@ -141,4 +143,6 @@ public:
     Point2D<T> mBottomRight;
 };
 
+}
+
 #endif
index c8e1459..e44ef04 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef _SIZE2D_H_
 #define _SIZE2D_H_
 
+namespace Aurum {
+
 /**
  * @brief Size2D Class.
  *        This class for represent specific obejct's size as width and height.
@@ -80,4 +82,6 @@ public:
     T height;
 };
 
+}
+
 #endif
index bcbca84..cbfef0b 100644 (file)
@@ -20,6 +20,8 @@
 
 #include <type_traits>
 
+namespace Aurum {
+
 template<typename E>
 struct enable_bitmask_operators{
     static const bool enable=false;
@@ -89,4 +91,6 @@ operator^=(E& lhs,E rhs){
     return lhs;
 }
 
+}
+
 #endif
index bb8fb44..10fb59f 100644 (file)
@@ -25,6 +25,8 @@
 #include "AccessibleNode.h"
 #include "UiSelector.h"
 
+namespace Aurum {
+
 /**
  * @class PartialMatch
  *
@@ -165,4 +167,6 @@ private:
     std::list<std::shared_ptr<PartialMatch>> mPartialMatches;
 };
 
+}
+
 #endif
index 22b7723..b6b14f2 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef _RUNNABLE_H_
 #define _RUNNABLE_H_
 
+namespace Aurum {
+
 /**
  * @class Runnable
  *
@@ -43,4 +45,6 @@ public:
     virtual void run() const = 0;
 };
 
+}
+
 #endif
index 91f80dc..115166f 100644 (file)
@@ -22,6 +22,8 @@
 
 #include "Runnable.h"
 
+namespace Aurum {
+
 /**
  * @class SendKeyRunnable
  *
@@ -49,4 +51,6 @@ public:
     void run() const override;
 };
 
+}
+
 #endif
index 9d75ab0..ae052d7 100644 (file)
@@ -25,6 +25,8 @@
 
 #include "UiSelector.h"
 
+namespace Aurum {
+
 /**
  * @class Sel
  *
@@ -80,4 +82,6 @@ public:
     static std::shared_ptr<UiSelector> depth(int depth);
 };
 
+}
+
 #endif
index f3ddcbb..2e5a3ff 100644 (file)
@@ -35,6 +35,8 @@
 #include <functional>
 #include <string>
 
+namespace Aurum {
+
 /**
  * @class UiDevice
  *
@@ -403,4 +405,6 @@ private:
     const Waiter *mWaiter;
 };
 
+}
+
 #endif
index b725b7d..08b3a3d 100644 (file)
@@ -28,6 +28,8 @@
 #include <memory>
 #include <vector>
 
+namespace Aurum {
+
 class UiDevice;
 
 /**
@@ -511,4 +513,6 @@ private:
     static const unsigned int LOGNCLICK_INTERVAL = 500;
 };
 
+}
+
 #endif
index 090e746..0e27e81 100644 (file)
@@ -20,6 +20,9 @@
 
 #include "UiObject.h"
 #include <memory>
+
+namespace Aurum {
+
 /**
  * @brief UiScrollable class
  * @since_tizen 5.5
@@ -96,4 +99,6 @@ private:
     int mScrollStep;
 };
 
+}
+
 #endif
index 37ade0c..25ef153 100644 (file)
@@ -24,6 +24,8 @@
 #include <vector>
 #include <memory>
 
+namespace Aurum {
+
 /**
  * @class UiSelector
  *
@@ -383,4 +385,6 @@ public:
     std::shared_ptr<UiSelector> mParent;
 };
 
+}
+
 #endif
index a67e45f..167ff48 100644 (file)
@@ -22,6 +22,8 @@
 #include "ISearchable.h"
 #include "UiSelector.h"
 
+namespace Aurum {
+
 /**
  * @class Until
  *
@@ -115,4 +117,6 @@ public:
         const bool isCheckable);
 };
 
+}
+
 #endif
index 5c0c935..6f5a647 100644 (file)
@@ -22,6 +22,8 @@
 
 #include <functional>
 
+namespace Aurum {
+
 /**
  * @class Waiter
  *
@@ -90,4 +92,6 @@ private:
     const int          WAIT_TIMEOUT_MS;
 };
 
+}
+
 #endif
index b9f205b..86f5d6c 100644 (file)
@@ -19,6 +19,8 @@
 
 #include <unordered_map>
 
+using namespace Aurum;
+
 A11yEventInfo::A11yEventInfo() : A11yEventInfo(A11yEvent::EVENT_NONE, nullptr, nullptr) {}
 
 A11yEventInfo::~A11yEventInfo() {}
index 127e995..bbccc78 100644 (file)
@@ -19,6 +19,8 @@
 
 #include <algorithm>
 
+using namespace Aurum;
+
 AccessibleApplication::AccessibleApplication(std::shared_ptr<AccessibleNode> node)
 : mNode{node}
 {
index 45c3993..d4bfb68 100644 (file)
@@ -24,6 +24,8 @@
 #include "config.h"
 #include <sstream>
 
+using namespace Aurum;
+
 AccessibleNode::~AccessibleNode()
 {
 }
index 5b6bc3a..d26461d 100644 (file)
@@ -27,6 +27,9 @@
 #include <utility>
 #include <algorithm>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 AccessibleWatcher::AccessibleWatcher()
 :mSources{}, mLock{}
 {
index ea2315c..c2bc794 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "Aurum.h"
 
+using namespace Aurum;
+
 AccessibleWindow::AccessibleWindow(std::shared_ptr<AccessibleApplication> app, std::shared_ptr<AccessibleNode> node)
 : mApp{app}, mNode{node}
 {
index f5ebdf2..634d2e2 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "Aurum.h"
 
+using namespace Aurum;
+
 Comparer::Comparer(const std::shared_ptr<UiDevice> device, const std::shared_ptr<UiSelector> selector,
                    const bool &earlyReturn)
     : mDevice(device), mSelector(selector), mEarlyReturn(earlyReturn)
index 4cd1327..6850096 100644 (file)
@@ -22,6 +22,9 @@
 #include <algorithm>
 #include <vector>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 AtspiAccessibleApplication::AtspiAccessibleApplication(std::shared_ptr<AccessibleNode> node)
 : AccessibleApplication(node)
 {
index 6a0575d..13d9373 100644 (file)
@@ -22,6 +22,9 @@
 
 #include <gio/gio.h>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 AtspiAccessibleNode::AtspiAccessibleNode(AtspiAccessible *node)
 : mNode{node}
 {
index a167104..2c14713 100644 (file)
@@ -28,6 +28,9 @@
 #include <thread>
 #include <iostream>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 #define COMPARE(A, B) \
     (B != A11yEvent::EVENT_NONE) && ((A & B) == B)
 
index 6968cae..053fcef 100644 (file)
@@ -18,6 +18,9 @@
 #include "AtspiAccessibleWindow.h"
 #include "AtspiWrapper.h"
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 AtspiAccessibleWindow::AtspiAccessibleWindow(std::shared_ptr<AccessibleApplication> app, std::shared_ptr<AccessibleNode> node)
 : AccessibleWindow(app, node)
 {
index fdf6e26..f41b7f0 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "AtspiWrapper.h"
 
+using namespace AurumInternal;
+
 std::recursive_mutex AtspiWrapper::mMutex = std::recursive_mutex{};
 
 GArray *AtspiWrapper::Atspi_state_set_get_states(AtspiStateSet *set)
index e01ee5c..efe80fa 100644 (file)
@@ -21,6 +21,9 @@
 
 #include <algorithm>
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
+
 MockAccessibleApplication::MockAccessibleApplication(std::shared_ptr<AccessibleNode> node)
 : AccessibleApplication(node), mWindowList{}
 {
index 795c8e7..5497dc2 100644 (file)
@@ -21,6 +21,9 @@
 #include <algorithm>
 #include <iostream>
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
+
 MockAccessibleNode::MockAccessibleNode(std::shared_ptr<AccessibleNode> parent, std::string text, std::string pkg, std::string role, std::string res, std::string type, std::string style,std::string automationId,  Rect<int> screenBoundingBox, int supportingIfaces,int featureProperty)
 : mParentNode(parent), mChildrenList{}, mActionSet{}
 {
index 05fec2f..52f5373 100644 (file)
@@ -20,6 +20,9 @@
 #include "MockAccessibleApplication.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
+
 MockAccessibleWatcher::MockAccessibleWatcher()
 {
 }
index 9941ac4..f20b351 100644 (file)
@@ -19,6 +19,9 @@
 #include "MockAccessibleApplication.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
+
 MockAccessibleWindow::MockAccessibleWindow(std::shared_ptr<MockAccessibleApplication> app, std::shared_ptr<MockAccessibleNode> node)
 : AccessibleWindow(app, node), mMockNode{node}
 {
index e05ceee..629329c 100644 (file)
@@ -34,6 +34,9 @@
 #include <chrono>
 #include <thread>
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
+
 #define NANO_SEC 1000000000.0
 #define MICRO_SEC 1000000
 
index a5ffd01..1040f5c 100644 (file)
@@ -32,6 +32,9 @@
 #include <tbm_surface.h>
 #include <system_info.h>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 #define NANO_SEC 1000000000.0
 #define MICRO_SEC 1000000
 
index 3b3e4eb..796c869 100644 (file)
@@ -22,6 +22,8 @@
 #include <regex>
 #include <sstream>
 
+using namespace Aurum;
+
 bool PartialMatch::checkCriteria(const std::string textA, const std::string textB)
 {
     std::regex re(textA);
index 3044426..a7e6ca5 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "Aurum.h"
 
+using namespace Aurum;
+
 SendKeyRunnable::SendKeyRunnable(std::string keycode)
     : mKeycode{keycode}
 {
index 484ffca..282f28d 100644 (file)
@@ -18,6 +18,8 @@
 #include "Aurum.h"
 #include <utility>
 
+using namespace Aurum;
+
 std::shared_ptr<UiSelector> Sel::text(std::string text)
 {
     std::shared_ptr<UiSelector> sel = std::make_shared<UiSelector>();
index 5643f3a..bafa6d7 100644 (file)
@@ -30,6 +30,9 @@
 #include <algorithm>
 #include <iostream>
 
+using namespace Aurum;
+using namespace AurumInternal;
+
 UiDevice::UiDevice() : UiDevice(nullptr) {}
 
 UiDevice::UiDevice(IDevice *impl)
index 101f90f..7d4ebcc 100644 (file)
@@ -23,6 +23,8 @@
 #include <chrono>
 #include <thread>
 
+using namespace Aurum;
+
 UiObject::UiObject() : UiObject(nullptr, nullptr, nullptr) {}
 
 UiObject::~UiObject()
index 9a2eb57..c2c7aa3 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "Aurum.h"
 
+using namespace Aurum;
+
 UiScrollable::UiScrollable(std::shared_ptr<UiSelector> selector)
 : mSelector{selector}, mMaxSearchSwipe{100}, mScrollStep{50}
 {
@@ -54,7 +56,6 @@ bool UiScrollable::scrollForward()
 
 bool UiScrollable::scrollForward(int steps)
 {
-
     //TODO Check Scree Size here
     return true;
 
index 9f7b9bd..25af9e8 100644 (file)
@@ -19,6 +19,8 @@
 #include <string>
 #include <sstream>
 
+using namespace Aurum;
+
 UiSelector::UiSelector()
 : mId{}, mAutomationId{}, mRole{}, mText{}, mPkg{}, mType{}, mStyle{},
   mMatchId{}, mMatchAutomationId{}, mMatchRole{}, mMatchText{}, mMatchPkg{}, mMatchType{}, mMatchStyle{},
index c6951c5..3a30831 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "Aurum.h"
 
+using namespace Aurum;
+
 std::function<bool(const ISearchable *)> Until::hasObject(
     const std::shared_ptr<UiSelector> selector)
 {
index 6b852d0..43c8194 100644 (file)
@@ -20,6 +20,8 @@
 #include <chrono>
 #include <thread>
 
+using namespace Aurum;
+
 Waiter::Waiter() : Waiter(nullptr) {}
 
 Waiter::~Waiter() {}
index 8326266..6bf7af7 100644 (file)
@@ -23,6 +23,8 @@
 
 #include "UiObject.h"
 
+using namespace Aurum;
+
 class ObjectMapper {
 private:
     std::map<std::string, std::shared_ptr<UiObject>> mObjectMap;
index d6793f7..99e6a63 100644 (file)
@@ -15,7 +15,6 @@
 #include "MockAccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
-
 class AurumTestMisc : public ::testing::Test {
     public:
         AurumTestMisc(){
index cef1c7f..b9ff53b 100644 (file)
@@ -15,6 +15,8 @@
 #include "MockAccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
 
 class AurumTestSel : public ::testing::Test {
     public:
index b46b312..4e09236 100644 (file)
@@ -18,6 +18,8 @@
 #include "MockAccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
 
 class AurumTestUiDevice : public ::testing::Test {
     public:
index 6820f93..9f20ca8 100644 (file)
@@ -19,6 +19,8 @@
 #include "MockAccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
 
 class AurumTestUiObject : public ::testing::Test {
     public:
index 3e2c79c..bdf6861 100644 (file)
 #include <iostream>
 #include <algorithm>
 
-
-
 #include "MockAccessibleWatcher.h"
 #include "MockAccessibleApplication.h"
 #include "MockAccessibleWindow.h"
 #include "MockAccessibleNode.h"
 
+using namespace Aurum;
+using namespace AurumInternal::Mock;
 
 class AurumTestUiSelector : public ::testing::Test {
     public: