File: mapping.hpp

package info (click to toggle)
golang-github-wellington-go-libsass 0.9.2%2Bgit20181130.4ef5b9d-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,128 kB
  • sloc: cpp: 28,607; ansic: 839; makefile: 44
file content (18 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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