summaryrefslogtreecommitdiffstats
path: root/src/uscxml/util/Trie.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/util/Trie.h')
-rw-r--r--src/uscxml/util/Trie.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/uscxml/util/Trie.h b/src/uscxml/util/Trie.h
index 5c2d14e..1f8b201 100644
--- a/src/uscxml/util/Trie.h
+++ b/src/uscxml/util/Trie.h
@@ -20,13 +20,14 @@
#ifndef TRIE_H_UZMQRBO5
#define TRIE_H_UZMQRBO5
+#include "uscxml/Common.h"
#include <string>
#include <map>
#include <list>
namespace uscxml {
-struct TrieNode {
+struct USCXML_API TrieNode {
TrieNode();
virtual ~TrieNode();
@@ -37,7 +38,7 @@ struct TrieNode {
void dump(int indent = 0);
};
-struct Trie {
+struct USCXML_API Trie {
Trie();
Trie(const std::string& seperator);
virtual ~Trie();