// Header guard for EncryptableString.h
#ifndef ENCRYPTABLESTRING_
#define ENCRYPTABLESTRING_

// Include statements
#include <iostream>
#include <string>

// Declare std namespace
using namespace std;

// Class definition for EncryptableString (derived from STL string class)
class EncryptableString : public string {

	public:
		EncryptableString() = default;
		EncryptableString(string input) : string(input) {}; // Class constructor that calls string constructor
		void encrypt(); // Member function that encrypts object strings

};

#endif
