This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
crystal-pokedex/PokeDexC++ GNU/StrToke.h

17 lines
225 B
C++
Executable File

#ifndef STRTOKE_H
#define STRTOKE_H
class StrToke
{
List tokens;
int tokes;
public:
StrToke ( string s, string d );
bool hasTokens();
string nextToken();
};
#include "StrToke.cpp"
#endif /* END STRTOKE_H */