Skip to content

Commit

Permalink
TimedDoor.h edited
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtanyuk committed Mar 18, 2024
1 parent 5a3b405 commit 40d254a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ class TimedDoor : public Door {
private:
DoorTimerAdapter * adapter;
int iTimeout;
bool opened;
bool isOpened;
public:
explicit TimedDoor(int);
bool isDoorOpened();
void unlock();
void lock();
void DoorTimeOut();
int getTimeOut();
void throwState();
};
Expand Down
4 changes: 2 additions & 2 deletions include/TimedDoor.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ class TimedDoor : public Door {
private:
DoorTimerAdapter * adapter;
int iTimeout;
bool opened;
bool isOpened;
public:
explicit TimedDoor(int);
bool isDoorOpened();
void unlock();
void lock();
void DoorTimeOut();
int getTimeOut() const;
void throwState();
};

Expand Down

0 comments on commit 40d254a

Please sign in to comment.