libdballe  7.21
ostream.h
Go to the documentation of this file.
1 #ifndef DBA_CORE_OSTREAM_H
2 #define DBA_CORE_OSTREAM_H
3 
10 #include <iosfwd>
11 
12 namespace dballe {
13 struct Coords;
14 struct Date;
15 struct Time;
16 struct Datetime;
17 struct DatetimeRange;
18 struct LatRange;
19 struct LonRange;
20 struct Level;
21 struct Trange;
22 struct Ident;
23 
24 std::ostream& operator<<(std::ostream& out, const Coords& c);
25 std::ostream& operator<<(std::ostream& out, const Date& dt);
26 std::ostream& operator<<(std::ostream& out, const Time& t);
27 std::ostream& operator<<(std::ostream& out, const Datetime& dt);
28 std::ostream& operator<<(std::ostream& out, const DatetimeRange& dtr);
29 std::ostream& operator<<(std::ostream& out, const LatRange& lr);
30 std::ostream& operator<<(std::ostream& out, const LonRange& lr);
31 std::ostream& operator<<(std::ostream& out, const Level& l);
32 std::ostream& operator<<(std::ostream& out, const Trange& l);
33 std::ostream& operator<<(std::ostream& out, const Ident& i);
34 
35 }
36 #endif
Copyright (C) 2008–2010 ARPA-SIM urpsim@smr.arpa.emr.it
Definition: cmdline.h:17