mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-05 02:22:21 +03:00
31 lines
429 B
C++
31 lines
429 B
C++
/*
|
|
* Vector.h
|
|
*
|
|
* Created on: 7 Dec 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cassert>
|
|
#include "MemPool.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
template <typename T>
|
|
class Vector : public std::vector<T, MemPoolAllocator<T> >
|
|
{
|
|
typedef std::vector<T, MemPoolAllocator<T> > Parent;
|
|
|
|
public:
|
|
Vector(MemPool &pool, size_t size = 0, const T &val = T())
|
|
:Parent(size, val, MemPoolAllocator<T>(pool) )
|
|
{
|
|
}
|
|
|
|
protected:
|
|
};
|
|
|
|
}
|
|
|