header file with class definitions and struct definitions.
//
// Created by Joshua Weinstein on 9/7/16.
//
#ifndef PRACTICE_CONTAINER_H
#define PRACTICE_CONTAINER_H
struct reg {
int n;
char * s;
bool b;
};
class Container {
public:
reg r;
Container(int num);
int getint();
};
#endif //PRACTICE_CONTAINER_H