Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit d6e85b6

Browse files
committed
Add collection wrapper
1 parent ae1de73 commit d6e85b6

File tree

6 files changed

+1654
-0
lines changed

6 files changed

+1654
-0
lines changed

robocin/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
add_subdirectory(utility)
2+
add_subdirectory(collection)

robocin/collection/CMakeLists.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
robocin_cpp_library(
2+
NAME collection
3+
HDRS collection.h
4+
SRCS collection.cpp
5+
DEPS tbb
6+
)
7+
8+
robocin_cpp_test(
9+
NAME collection_test
10+
SRCS collection_test.cpp
11+
DEPS collection
12+
)

robocin/collection/README.md

+484
Large diffs are not rendered by default.

robocin/collection/collection.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//
2+
// Created by José Cruz <joseviccruz> on 27/03/23.
3+
// Copyright (c) 2023 RobôCIn.
4+
//
5+
6+
#include "robocin/collection/collection.h"

0 commit comments

Comments
 (0)