Initial commit
[yaffs-website] / node_modules / node-sass / src / libsass / src / mapping.hpp
1 #ifndef SASS_MAPPING_H
2 #define SASS_MAPPING_H
3
4 #include "position.hpp"
5
6 namespace Sass {
7
8   struct Mapping {
9     Position original_position;
10     Position generated_position;
11
12     Mapping(const Position& original_position, const Position& generated_position)
13     : original_position(original_position), generated_position(generated_position) { }
14   };
15
16 }
17
18 #endif