Skip to content
Permalink
e7e8a75a86
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
31 lines (21 sloc) 463 Bytes
//
// Database.h
// BasketBallGame
//
// Created by Suraj Mann on 05/03/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#ifndef Database_h
#define Database_h
#endif /* Database_h */
#include <iostream>
using namespace std;
/* This class is for creating functions to communicate with the database - Suraj */
// - Suraj
class Database
{
public:
Database();
void database_queries();
void add_players_db();
};