Skip to content

Commit 6b56486

Browse files
committed
Paquet Definition.
1 parent 3e76bb2 commit 6b56486

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "Paquet.h"
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#pragma once
2+
3+
#include <iostream>
4+
#include <string>
5+
#include <vector>
6+
7+
namespace FPL::Paquet{
8+
class Paquet {
9+
public:
10+
std::string PaquetName;
11+
std::vector<std::string> PaquetContent;
12+
};
13+
}

0 commit comments

Comments
 (0)