/* Copyright (c) by respective owners including Yahoo!, Microsoft, and individual contributors. All rights reserved. Released under a BSD license as described in the file LICENSE. */ #pragma once #include "label_parser.h" struct example; struct vw; namespace MULTILABEL { struct labels { v_array label_v; }; void output_example(vw& all, example& ec); extern label_parser multilabel; void print_update(vw& all, bool is_test, example& ec, const v_array* ec_seq); } // namespace MULTILABEL