|

INTRODUCTION
Overview
Download and Install
Documentation
Publications
REPOSITORY
Libraries
DEVELOPER
Dev Guide
Dashboard
PEOPLE
Contributors
Users

Project
Download
Mailing lists
|
|
|
32 #if defined (FLEXIPORT_STATIC)
33 #define FLEXIPORT_EXPORT
34 #elif defined (FLEXIPORT_EXPORTS)
35 #define FLEXIPORT_EXPORT __declspec (dllexport)
37 #define FLEXIPORT_EXPORT __declspec (dllimport)
39 #if !defined (timespec)
41 typedef struct timespec
48 #define FLEXIPORT_EXPORT
65 Timeout ( int sec, int usec) : _sec (sec), _usec (usec) {}
66 Timeout ( const Timeout &rhs) : _sec (rhs._sec), _usec (rhs._usec) {}
68 void AsTimeval ( struct timeval &dest) const;
69 void FromTimeval ( const struct timeval &src);
70 void AsTimespec ( struct timespec &dest) const;
71 void FromTimespec ( const struct timespec &src);
74 Timeout& operator= ( const struct timeval &rhs);
75 Timeout& operator= ( const struct timespec &rhs);
|
|