#ifndef _SHORTCUTPOSITION_H_
#define _SHORTCUTPOSITION_H_

#include <ostream>

namespace Routing {
   
   struct ShortcutPosition {
      
      
      public:
      int edgeId;
      int position;
      int count;
      ShortcutPosition() {
      }
      
      ShortcutPosition(int edgeId, int position, int count) : edgeId(edgeId), position(position), count(count) {
      }
   };

}

#endif