git-svn-id: svn://db.shs.com.ru/pip@597 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2018-02-12 12:20:15 +00:00
parent da48575caa
commit 6c51e8edf3
43 changed files with 204 additions and 164 deletions

View File

@@ -31,7 +31,7 @@ typedef void (*TimerEvent)(void * , int );
class PITimer;
class _PITimerBase {
class PIP_EXPORT _PITimerBase {
friend class PITimer;
public:
_PITimerBase();
@@ -72,7 +72,7 @@ protected:
class PITimer: public PIObject {
class PIP_EXPORT PITimer: public PIObject {
PIOBJECT_SUBCLASS(PITimer, PIObject)
public:
@@ -214,7 +214,7 @@ public:
//! \}
protected:
struct Delimiter {
struct PIP_EXPORT Delimiter {
Delimiter(TimerEvent slot_ = 0, int delim_ = 1) {slot = slot_; delim = delim_; tick = 0;}
TimerEvent slot;
int delim;