This file contains 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 <stdio.h> | |
#include <string.h> | |
#include <Windows.h> | |
int main(int argc, char **argv) | |
{ | |
if(argc != 2) | |
{ | |
printf("That command requried 1 argument"); | |
return 1; |
This file contains 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
#ifndef LOOKUPVECTOR_H | |
#define LOOKUPVECTOR_H | |
#include <memory> | |
#include <vector> | |
namespace Utilities | |
{ | |
template<typename T, typename = void> | |
struct auto_const_reference |