File size: 235 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <vector>
#include "Word.h"

// a vector of terminals
class Phrase : public std::vector<Word*>
{
public:
  Phrase()
  {}

  Phrase(size_t size)
    :std::vector<Word*>(size)
  {}

  std::string Debug() const;

};