Skip to content
Snippets Groups Projects
Commit 1003ca2f authored by Nour Souid's avatar Nour Souid
Browse files

Upload New File

parent 0c3644a7
No related branches found
No related tags found
No related merge requests found
#pragma once
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include<string>
using namespace std;
class Edge
{
private:
string id;
string source;
string target;
int inscription;
public:
Edge();
Edge(string, string, string, int);
~Edge();
string getId();
string getSource();
string getTarget();
int getInscription();
void setId(string);
void setSource(string);
void setTarget(string);
void setInscription(int);
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment