mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
10 lines
209 B
C++
10 lines
209 B
C++
|
#include "ug_ttrack_position.h"
|
||
|
namespace ugdiss
|
||
|
{
|
||
|
namespace ttrack
|
||
|
{
|
||
|
Position::Position() : sid(0), offset(0) {};
|
||
|
Position::Position(id_type _sid, ushort _off) : sid(_sid), offset(_off) {};
|
||
|
}
|
||
|
}
|