#include <iostream>
#include <fstream>
#include "src/STFile.hpp"
using namespace std;

int main() {
    char typeID[1];
    cout << "Select the file type: 0 - .st (String file)\n=> ";
    cin >> typeID;

    switch (typeID[0]) {
        case '0': {
            STFile file;
            file.OpenFile("test");
        }
    }

    //ifstream file(filename, ios::binary);
    /*
    if (!file.is_open()) {
        cout << "Cannot open file " << filename << ".\n";
        return -1;
    }*/
}