#include <filesys.h>
Collaboration diagram for s_event:
Definition at line 143 of file filesys.h.
Public Member Functions | |
void | clear () |
Clears the structure. | |
s_event () | |
Public Attributes | |
time_t | first |
Timestamp of first occurence of event. | |
bool | has_read |
User has read the object. | |
bool | owner_notified |
OWNER has been notified about user's read yet. | |
string | user_name |
Name of user to which this event belongs to. | |
bool | user_notified |
User has been notified about this object. |
|
Definition at line 166 of file filesys.h. References clear(). 00167 { 00168 clear(); 00169 }
Here is the call graph for this function: ![]() |
|
Clears the structure.
Definition at line 157 of file filesys.h. References first, has_read, owner_notified, user_name, and user_notified. Referenced by dcc_file_has_been_read(), filesys_init(), and s_event(). 00158 { 00159 has_read=false; 00160 owner_notified=false; 00161 user_notified=false; 00162 user_name=""; 00163 first=0; 00164 }
|
|
Timestamp of first occurence of event.
Definition at line 149 of file filesys.h. Referenced by clear(), dcc_file_has_been_read(), filesys_dcc_check_for_notifies(), filesys_dcc_drop_notifies(), and filesys_init(). |
|
User has read the object.
Definition at line 144 of file filesys.h. Referenced by clear(), dcc_file_has_been_read(), filesys_dcc_check_for_notifies(), filesys_dcc_drop_notifies(), and filesys_init(). |
|
OWNER has been notified about user's read yet.
Definition at line 145 of file filesys.h. Referenced by clear(), dcc_file_has_been_read(), filesys_dcc_check_for_notifies(), filesys_dcc_drop_notifies(), and filesys_init(). |
|
Name of user to which this event belongs to.
Definition at line 147 of file filesys.h. Referenced by clear(), dcc_file_has_been_read(), filesys_dcc_check_for_notifies(), filesys_dcc_drop_notifies(), and filesys_init(). |
|
User has been notified about this object.
Definition at line 146 of file filesys.h. Referenced by clear(), dcc_file_has_been_read(), filesys_dcc_check_for_notifies(), filesys_dcc_drop_notifies(), and filesys_init(). |