mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-25 12:52:29 +03:00
a5467d89c4
Properties can save memory by not storing the value string.
19 lines
221 B
C++
19 lines
221 B
C++
|
|
#pragma once
|
|
|
|
#include "moses/PP/PhraseProperty.h"
|
|
#include <string>
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
class TreeStructurePhraseProperty : public PhraseProperty
|
|
{
|
|
public:
|
|
TreeStructurePhraseProperty() {};
|
|
|
|
};
|
|
|
|
} // namespace Moses
|
|
|