added fractions and RNG::trial

This commit is contained in:
2024-07-11 17:28:04 -04:00
parent 6e822ba60a
commit ae5cd1e0c6
6 changed files with 82 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#define __LOG_H__
#include <fstream>
#include <string>
#include <vector>
#include <memory>
#include "constants.h"
#include "characters.h"
@ -10,6 +11,7 @@
class logger final {
private:
std::ofstream out;
std::vector<char> display;
public:
logger(std::ofstream &&new_out);