9 lines
134 B
C++
9 lines
134 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace GhettoCipher
|
|
{
|
|
//! A "bitset" of variable length
|
|
typedef std::string Flexblock;
|
|
}
|