Skip to content
Permalink
Browse files
Update main.cpp
  • Loading branch information
clarkh9 committed Mar 13, 2023
1 parent d9974cd commit 2881777c0e4647c6c4f5e78d74ca1dbc09041ef0
Showing 1 changed file with 10 additions and 0 deletions.
@@ -10,10 +10,20 @@
#ifndef MAIN
#define MAIN

/* SYSTEM INCLUDES */

#include <iostream>

/* NESTED INCLUDES */

#include "huffman_types.h"

int main(int argc, char** argv)
{
std::string INPUT = "Huffman";
TREE* GET_TREE = TREE::BUILD_TREE();
TREE::ENCODE;
TREE::DECODE;
return 0;
}

0 comments on commit 2881777

Please sign in to comment.