Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102836535
storage.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 24, 16:52
Size
535 B
Mime Type
text/x-c++
Expires
Wed, Feb 26, 16:52 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24430543
Attached To
R8244 Eawag_Swing_Weight_Elicitation
storage.cc
View Options
/*
** © 2014 by Philipp Dunkel <pip@pipobscure.com>
** Licensed under MIT License.
*/
struct
fse_event
{
UInt64
id
;
UInt32
flags
;
CFStringRef
path
;
fse_event
(
CFStringRef
eventPath
,
UInt32
eventFlag
,
UInt64
eventId
)
{
this
->
path
=
eventPath
;
this
->
flags
=
eventFlag
;
this
->
id
=
eventId
;
if
(
this
->
path
!=
NULL
)
CFRetain
(
this
->
path
);
}
~
fse_event
()
{
if
(
this
->
path
!=
NULL
)
CFRelease
(
this
->
path
);
}
private
:
fse_event
(
const
fse_event
&
);
void
operator
=
(
const
fse_event
&
);
};
Event Timeline
Log In to Comment