forgot to move them into the db namespace
This commit is contained in:
parent
707b069ad5
commit
f89df716b9
2 changed files with 8 additions and 0 deletions
|
|
@ -43,6 +43,8 @@
|
|||
|
||||
#include "db_types.hpp"
|
||||
|
||||
namespace db {
|
||||
|
||||
class DBArtifact {
|
||||
|
||||
public:
|
||||
|
|
@ -87,4 +89,6 @@ class DBArtifact {
|
|||
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue