Code

Merge and cleanup of GSoC C++-ification project.
[inkscape.git] / src / media.cpp
1 #include "media.h"
3 void
4 media_clear_all(Media &media)
5 {
6     media.print = false;
7     media.screen = false;
8 }
10 void
11 media_set_all(Media &media)
12 {
13     media.print = true;
14     media.screen = true;
15 }
18 /*
19   Local Variables:
20   mode:c++
21   c-file-style:"stroustrup"
22   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
23   indent-tabs-mode:nil
24   fill-column:99
25   End:
26 */
27 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :