13 lines
198 B
C++
13 lines
198 B
C++
|
// Copyright (c) OpenMMLab. All rights reserved.
|
||
|
|
||
|
#include "net.h"
|
||
|
|
||
|
#include "registry.h"
|
||
|
|
||
|
namespace mmdeploy {
|
||
|
|
||
|
template class Registry<Net>;
|
||
|
template class Creator<Net>;
|
||
|
|
||
|
} // namespace mmdeploy
|