diff options
author | Josh Blum | 2011-07-22 11:55:52 -0700 |
---|---|---|
committer | Josh Blum | 2011-07-22 11:55:52 -0700 |
commit | 17ef212c684e13e744a4e4258f7fed2dcbc9a5be (patch) | |
tree | eacddfa5da89deb10a70d927560fabc00a24c828 /gr-trellis/src/lib/fsm.h | |
parent | 513febb1932f18f1123e530632032263c2322d9e (diff) | |
download | gnuradio-17ef212c684e13e744a4e4258f7fed2dcbc9a5be.tar.gz gnuradio-17ef212c684e13e744a4e4258f7fed2dcbc9a5be.tar.bz2 gnuradio-17ef212c684e13e744a4e4258f7fed2dcbc9a5be.zip |
trellis: added symbol visibility defines to gr-trellis, builds on MSVC and linux
Diffstat (limited to 'gr-trellis/src/lib/fsm.h')
-rw-r--r-- | gr-trellis/src/lib/fsm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-trellis/src/lib/fsm.h b/gr-trellis/src/lib/fsm.h index 8bae91754..d38e08dd2 100644 --- a/gr-trellis/src/lib/fsm.h +++ b/gr-trellis/src/lib/fsm.h @@ -23,6 +23,7 @@ #ifndef INCLUDED_TRELLIS_FSM_H #define INCLUDED_TRELLIS_FSM_H +#include <trellis_api.h> #include <vector> #include <iosfwd> @@ -33,7 +34,7 @@ * rather than the FSM itself. It particular the state of the FSM * is not stored within an instance of this class. */ -class fsm { +class TRELLIS_API fsm { private: // Input alphabet cardinality. int d_I; |