From ad6a7e2e3a2203de2b6965415c67aa3766583fe1 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Mon, 8 Jan 2024 14:14:24 -0500 Subject: [PATCH] change import to signify library use --- include/actsim_agent/actsim_agent.hpp | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/actsim_agent/actsim_agent.hpp b/include/actsim_agent/actsim_agent.hpp index 8201090..658ca1b 100644 --- a/include/actsim_agent/actsim_agent.hpp +++ b/include/actsim_agent/actsim_agent.hpp @@ -25,7 +25,7 @@ #ifndef __ACTSIM_AGENT__ #define __ACTSIM_AGENT__ -#include "db_types.hpp" +#include int start_agent(db::db_credentials_t db_cred, size_t worker_processes); diff --git a/src/main.cpp b/src/main.cpp index cb07653..87e1363 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,8 +26,8 @@ #include #include #include +#include #include "cli_util.hpp" -#include "db_types.hpp" #include "util.h" #include "main.hpp"