Skip to content

Commit

Permalink
Allow external use of typecast (#500)
Browse files Browse the repository at this point in the history
This enables using typecast functions without pulling `Albatross/Common`
  • Loading branch information
armallen authored Dec 2, 2024
1 parent fb1f714 commit 7c0888f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ cc_library(
"include/albatross/SparseGP",
"include/albatross/Stats",
"include/albatross/Tune",
"include/albatross/Typecast",
"include/albatross/linalg/Block",
"include/albatross/linalg/Utils",
"include/albatross/serialize/Common",
Expand Down
21 changes: 21 additions & 0 deletions include/albatross/Typecast
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* Copyright (C) 2024 Swift Navigation Inc.
* Contact: Swift Navigation <dev@swiftnav.com>
*
* This source is subject to the license found in the file 'LICENSE' which must
* be distributed together with this source. All other rights reserved.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
*/

#ifndef ALBATROSS_TYPECAST_INCLUDE_H
#define ALBATROSS_TYPECAST_INCLUDE_H

#include <Eigen/Core>

#include <albatross/src/details/error_handling.hpp>
#include <albatross/src/details/typecast.hpp>

#endif

0 comments on commit 7c0888f

Please sign in to comment.