Source file: /~heha/basteln/Haus/Telefon/Sprachausgabe.zip/VS2008/ESP8266SAM.h

/*
  ESP8266SAM
  Port of SAM to the ESP8266
  Copyright (C) 2017  Earle F. Philhower, III
*/

#pragma once
#include "stdint.h"	// int16_t usw.

class ESP8266SAM {
public:
  ESP8266SAM():phonetic(false) {}
  void SetPhonetic(bool val=true) {phonetic=val;}
  bool Say(const char*str);
private:
  bool phonetic;
};
Detected encoding: ASCII (7 bit)2