forgot to move them into the db namespace

This commit is contained in:
Fabian Posch 2024-01-12 17:08:28 -05:00
parent 707b069ad5
commit f89df716b9
2 changed files with 8 additions and 0 deletions

View file

@ -43,6 +43,8 @@
#include "db_types.hpp"
namespace db {
class DBArtifact {
public:
@ -87,4 +89,6 @@ class DBArtifact {
};
};
#endif

View file

@ -23,6 +23,8 @@
#include "db_artifact.hpp"
namespace db {
DBArtifact::DBArtifact(
const db::uuid_t& id,
const db::uuid_t& source_pass,
@ -32,3 +34,5 @@ DBArtifact::DBArtifact(
this->source_pass_ = source_pass;
this->target_artifact_ = target_artifact;
}
};