change import to signify library use

This commit is contained in:
Fabian Posch 2024-01-08 14:14:24 -05:00
parent 5cb799a703
commit ad6a7e2e3a
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@
#ifndef __ACTSIM_AGENT__ #ifndef __ACTSIM_AGENT__
#define __ACTSIM_AGENT__ #define __ACTSIM_AGENT__
#include "db_types.hpp" #include <db_types.hpp>
int start_agent(db::db_credentials_t db_cred, size_t worker_processes); int start_agent(db::db_credentials_t db_cred, size_t worker_processes);

View file

@ -26,8 +26,8 @@
#include <getopt.h> #include <getopt.h>
#include <thread> #include <thread>
#include <actsim_agent.hpp> #include <actsim_agent.hpp>
#include <db_types.hpp>
#include "cli_util.hpp" #include "cli_util.hpp"
#include "db_types.hpp"
#include "util.h" #include "util.h"
#include "main.hpp" #include "main.hpp"