Skip to content

Commit 55bb5a9

Browse files
committed
WIP
1 parent 13a56a1 commit 55bb5a9

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ cc_library(
3838
"include/albatross/SparseGP",
3939
"include/albatross/Stats",
4040
"include/albatross/Tune",
41+
"include/albatross/Typecast",
4142
"include/albatross/linalg/Block",
4243
"include/albatross/linalg/Utils",
4344
"include/albatross/serialize/Common",

include/albatross/Typecast

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
* Copyright (C) 2024 Swift Navigation Inc.
3+
* Contact: Swift Navigation <[email protected]>
4+
*
5+
* This source is subject to the license found in the file 'LICENSE' which must
6+
* be distributed together with this source. All other rights reserved.
7+
*
8+
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
9+
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
10+
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
11+
*/
12+
13+
#ifndef ALBATROSS_TYPECAST_INCLUDE_H
14+
#define ALBATROSS_TYPECAST_INCLUDE_H
15+
16+
#include <Eigen/Core>
17+
18+
#include <albatross/src/details/error_handling.hpp>
19+
#include <albatross/src/details/typecast.hpp>
20+
21+
#endif

0 commit comments

Comments
 (0)