| 929 | } |
| 930 | |
| 931 | void |
| 932 | Sample_Dissector::init (const std::string &subtree) |
| 933 | { |
| 934 | |
| 935 | if (subtree.length() > 0) |
| 936 | { |
| 937 | this->subtree_label_ = subtree; |
| 938 | |
| 939 | gint *ett[] = { |
| 940 | &ett_ |
| 941 | }; |
| 942 | proto_register_subtree_array(ett, array_length(ett)); |
| 943 | } |
| 944 | } |
| 945 | |
| 946 | Sample_Field * |
| 947 | Sample_Dissector::add_field (Sample_Field *f) |
no test coverage detected