2010-04-12 14:15:49 +04:00
|
|
|
/***********************************************************************
|
2012-01-25 16:26:28 +04:00
|
|
|
Moses - statistical machine translation system
|
|
|
|
Copyright (C) 2006-2012 University of Edinburgh
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
2010-09-10 19:19:25 +04:00
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
2010-04-08 21:16:10 +04:00
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2012-09-27 20:33:31 +04:00
|
|
|
class ChartCellLabel;
|
|
|
|
|
2014-05-08 20:51:45 +04:00
|
|
|
class StackVec : public std::vector<const ChartCellLabel*>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
2010-04-08 21:16:10 +04:00
|
|
|
|
2011-07-19 01:44:27 +04:00
|
|
|
}
|