1234567891011121314151617181920 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-07
- * Changed: 2020-08-23
- *
- * */
- #ifndef TYPES_HPP
- #define TYPES_HPP
- #include <string>
- namespace ls_std {
- using byte = char;
- using byte_field = std::string;
- }
- #endif
|