#include <future>
#include <ostream>
#include <boost/function.hpp>
#include <gtk/gtk.h>
#include "assertions.hh"
Go to the source code of this file.
◆ operator<<() [1/2]
| std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
cairo_rectangle_int_t const & |
r |
|
) |
| |
|
inline |
◆ operator<<() [2/2]
| std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const GdkPoint & |
p |
|
) |
| |
34 {
return os <<
"GdkPoint(" << p.x <<
", " << p.y <<
")"; }
◆ operator==() [1/2]
| bool operator== |
( |
cairo_rectangle_int_t const & |
left, |
|
|
cairo_rectangle_int_t const & |
right |
|
) |
| |
|
inline |
87 return left.x == right.x && left.y == right.y && left.width == right.width && left.height == right.height;
◆ operator==() [2/2]
| bool operator== |
( |
const GdkPoint & |
left, |
|
|
const GdkPoint & |
right |
|
) |
| |
|
inline |
90 {
return left.x == right.x && left.y == right.y; }