mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
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
|