Skip to content

Commit 5c90734

Browse files
committed
- Fixing Thread
1 parent dc92998 commit 5c90734

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

src/ESPressio_IThread.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@
55
#include <cstdint>
66
#include <functional>
77

8-
#include <ESPressio_Object.hpp>
9-
108
namespace ESPressio {
119

12-
using namespace Base;
1310

1411
namespace Threads {
1512

@@ -27,7 +24,7 @@ namespace ESPressio {
2724
`IThread` is a common Interface for all Thread Types provided by this library.
2825
You can use it to reference any Thread Type without knowing the actual type.
2926
*/
30-
class IThread : public IObject {
27+
class IThread {
3128
public:
3229
// Methods
3330

src/ESPressio_Thread.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace ESPressio {
2020
`Thread` is a class that represents a "standard" Thread in the system.
2121
It is a wrapper around the system's Thread API, designed to make them much easier to use.
2222
*/
23-
class Thread : public IThread, public Object {
23+
class Thread : public IThread {
2424
private:
2525
// Type Definitions
2626

0 commit comments

Comments
 (0)