This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <fstream> | |
#include <iostream> | |
#include <iterator> | |
#include <string> | |
#include <unordered_set> | |
#include <vector> | |
namespace std { | |
template <> struct hash<std::vector<int>> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <gtk/gtk.h> | |
static void activate_main (GtkApplication *app, gpointer user_data); | |
static void setup_tree_view (GtkWidget *treeview); | |
static void populate_tree_store (GtkTreeStore *store); | |
int | |
main (int argc, | |
char **argv) | |
{ |
NewerOlder