StdAir Logo  1.00.16
C++ Standard Airline IT Object Library
Loading...
Searching...
No Matches
BreakPointStruct.hpp
Go to the documentation of this file.
1#ifndef __STDAIR_BOM_BREAKPOINTSTRUCT_HPP
2#define __STDAIR_BOM_BREAKPOINTSTRUCT_HPP
3
4// //////////////////////////////////////////////////////////////////////
5// Import section
6// //////////////////////////////////////////////////////////////////////
7// STL
8#include <iosfwd>
9#include <string>
10// StdAir
14
15namespace stdair {
16
19 public:
20 // /////////////// Getters /////////////////
23 return _breakPointTime;
24 }
25
26 // /////////// Display support method /////////////
29 void toStream (std::ostream& ioOut) const;
30
33 void fromStream (std::istream& ioIn);
34
36 const std::string describe() const;
37
38
39 // /////////////// Constructors and Destructors /////////////////
40 public:
43
45 BreakPointStruct (const Date_T&);
46
49
50 private:
54
55 public:
58
59
60 private:
61 // /////////////// Attributes /////////////////
63 const DateTime_T _breakPointTime;
64 };
65
66}
67#endif // __STDAIR_BOM_BREAKPOINTSTRUCT_HPP
Handle on the StdAir library context.
boost::gregorian::date Date_T
boost::posix_time::ptime DateTime_T
void toStream(std::ostream &ioOut) const
BreakPointStruct(const DateTime_T &)
void fromStream(std::istream &ioIn)
const std::string describe() const
const DateTime_T & getBreakPointTime() const