You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
361 B
19 lines
361 B
|
3 years ago
|
#ifndef SASS_MAPPING_H
|
||
|
|
#define SASS_MAPPING_H
|
||
|
|
|
||
|
|
#include "position.hpp"
|
||
|
|
|
||
|
|
namespace Sass {
|
||
|
|
|
||
|
|
struct Mapping {
|
||
|
|
Position original_position;
|
||
|
|
Position generated_position;
|
||
|
|
|
||
|
|
Mapping(const Position& original_position, const Position& generated_position)
|
||
|
|
: original_position(original_position), generated_position(generated_position) { }
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|