ModErn Text Analysis
META Enumerates Textual Applications
default_node.h
Go to the documentation of this file.
1 
10 #ifndef META_DEFAULT_NODE_H_
11 #define META_DEFAULT_NODE_H_
12 
13 #include <string>
14 
15 namespace meta
16 {
17 namespace graph
18 {
20 {
25  {
26  }
27 
31  default_node(const std::string& lbl) : label{lbl}
32  {
33  }
34 
36  std::string label;
37  node_id id;
38 };
39 }
40 }
41 
42 #endif
Definition: default_node.h:19
default_node()
Creates a node with a blank label.
Definition: default_node.h:24
std::string label
the text label for this node
Definition: default_node.h:36
default_node(const std::string &lbl)
Definition: default_node.h:31
The ModErn Text Analysis toolkit is a suite of natural language processing, classification, information retreival, data mining, and other applications of text processing.
Definition: analyzer.h:24