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

Add collection adaptor #9

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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