summaryrefslogtreecommitdiff
path: root/decoder/ff_register.h
blob: 80b1457e3532524ff5522eaa0daad213acd91c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FF_FSA_REGISTER_H
#define FF_FSA_REGISTER_H

#include "ff_factory.h"

template <class Impl>
inline void RegisterFF() {
  ff_registry.Register(new FFFactory<Impl>);
}

void register_feature_functions();

#endif