~centralelyon2010/inkscape/imagelinks2

1 by mental
moving trunk for module inkscape
1
#ifndef INKSCAPE_MEDIA_H
2
#define INKSCAPE_MEDIA_H
3
4
class Media {
5
public:
6
    bool print;
7
    bool screen;
8
};
9
10
void media_clear_all(Media &);
11
void media_set_all(Media &);
12
13
#endif /* !INKSCAPE_MEDIA_H */
14
15
/*
16
  Local Variables:
17
  mode:c++
18
  c-file-style:"stroustrup"
19
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
20
  indent-tabs-mode:nil
21
  fill-column:99
22
  End:
23
*/
9020 by JazzyNico
Code refactoring and merging with trunk (revision 10599).
24
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :