diff options
| author | Aetias <aetias@outlook.com> | 2024-05-03 19:08:07 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-05-03 19:08:07 +0200 |
| commit | 68180ff022ce70cc9f91cfad0014b0166064aadb (patch) | |
| tree | 35d9536d1ab4cbc681b545175cec3297d0e6c580 /libs/cpp | |
| parent | 5f9ed124164aca86632f03f7953103d1fc409395 (diff) | |
| parent | 2cd1810cb2951333fd12a27d0d862615f6254a5c (diff) | |
Merge branch 'main' into match_actor_rupee
Diffstat (limited to 'libs/cpp')
| -rw-r--r-- | libs/cpp/include/vector | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/cpp/include/vector b/libs/cpp/include/vector new file mode 100644 index 00000000..e775aba0 --- /dev/null +++ b/libs/cpp/include/vector @@ -0,0 +1,11 @@ +#pragma once + +namespace std { + template<class T> + class vector { + public: + T *elements; + int size; + int capacity; + }; +} |
