We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e76bb2 commit 6b56486Copy full SHA for 6b56486
src/Essentials/Definitions/Paquet.cpp
@@ -0,0 +1 @@
1
+#include "Paquet.h"
src/Essentials/Definitions/Paquet.h
@@ -0,0 +1,13 @@
+#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