#include "SimpleEncryption.h"

// implementation of actual encryption algorithm
char SimpleEncryption::transform(char ch) const {
    return ch + 1;
}