mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-02 17:09:36 +03:00
13 lines
318 B
C++
13 lines
318 B
C++
|
|
#include <string>
|
|
|
|
#include "VWFeatureBase.h"
|
|
|
|
namespace Moses
|
|
{
|
|
std::map<std::string, std::vector<VWFeatureBase*> > VWFeatureBase::s_features;
|
|
std::map<std::string, std::vector<VWFeatureBase*> > VWFeatureBase::s_sourceFeatures;
|
|
std::map<std::string, std::vector<VWFeatureBase*> > VWFeatureBase::s_targetFeatures;
|
|
}
|
|
|