Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
469532a0
Commit
469532a0
authored
Sep 30, 2017
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes
parent
cadcafc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
PassiveTimer.h
include/PassiveTimer.h
+2
-2
unisetstd.h
include/unisetstd.h
+1
-1
No files found.
include/PassiveTimer.h
View file @
469532a0
...
...
@@ -99,7 +99,7 @@ namespace uniset
virtual
bool
checkTime
()
const
noexcept
override
;
/*!< проверка наступления заданного времени */
virtual
timeout_t
setTiming
(
timeout_t
msec
)
noexcept
override
;
/*!< установить таймер и запустить. timeMS = 0 вызовет немедленное срабатывание */
virtual
void
reset
()
noexcept
;
/*!< перезапустить таймер */
virtual
void
reset
()
noexcept
override
;
/*!< перезапустить таймер */
virtual
timeout_t
getCurrent
()
const
noexcept
override
;
/*!< получить текущее значение таймера, в мс */
...
...
@@ -108,7 +108,7 @@ namespace uniset
*/
virtual
timeout_t
getInterval
()
const
noexcept
override
;
virtual
void
terminate
()
noexcept
;
/*!< прервать работу таймера */
virtual
void
terminate
()
noexcept
override
;
/*!< прервать работу таймера */
protected
:
timeout_t
t_msec
=
{
0
};
/*!< интервал таймера, в милисекундах (для "пользователей") */
...
...
include/unisetstd.h
View file @
469532a0
...
...
@@ -34,6 +34,6 @@ namespace unisetstd
return
std
::
unique_ptr
<
T
>
(
new
T
(
std
::
forward
<
Args
>
(
args
)...
)
);
}
// --------------------------------------------------------------------------
}
// end of namespace uniset
cpp
}
// end of namespace uniset
std
// --------------------------------------------------------------------------
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment