aboutsummaryrefslogtreecommitdiff
path: root/week13/Exercise1/WordString.h
blob: fc91e3d09799bb91eb1fb532205007958d675f3e (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once
#include "String.h"
#include "IndexArray.h"

class WordString : public String, public IndexArray {
public:
	WordString(const char* str);
};