1// sass.hpp must go before all system headers to get the
2// __EXTENSIONS__ fix on Solaris.
3#include "sass.hpp"
4
5#include "stylesheet.hpp"
6
7namespace Sass {
8
9 // Constructor
10 Sass::StyleSheet::StyleSheet(const Resource& res, Block_Obj root) :
11 Resource(res),
12 root(root)
13 {
14 }
15
16 StyleSheet::StyleSheet(const StyleSheet& sheet) :
17 Resource(sheet),
18 root(sheet.root)
19 {
20 }
21
22}
23

source code of gtk/subprojects/libsass/src/stylesheet.cpp