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

Commit

Permalink
Add collection wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
joseviccruz committed Sep 17, 2023
1 parent ae1de73 commit d6e85b6
Show file tree
Hide file tree
Showing 6 changed files with 1,654 additions and 0 deletions.
1 change: 1 addition & 0 deletions robocin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
add_subdirectory(utility)
add_subdirectory(collection)
12 changes: 12 additions & 0 deletions robocin/collection/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
robocin_cpp_library(
NAME collection
HDRS collection.h
SRCS collection.cpp
DEPS tbb
)

robocin_cpp_test(
NAME collection_test
SRCS collection_test.cpp
DEPS collection
)
484 changes: 484 additions & 0 deletions robocin/collection/README.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions robocin/collection/collection.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//
// Created by José Cruz <joseviccruz> on 27/03/23.
// Copyright (c) 2023 RobôCIn.
//

#include "robocin/collection/collection.h"
Loading

0 comments on commit d6e85b6

Please sign in to comment.