13 lines
239 B
C++
13 lines
239 B
C++
// No copyright
|
|
#pragma once
|
|
|
|
#include "iface/common/container.hh"
|
|
#include "iface/subsys/interface.hh"
|
|
|
|
namespace nf7 {
|
|
|
|
using Env = Container<subsys::Interface>;
|
|
using SimpleEnv = SimpleContainer<subsys::Interface>;
|
|
|
|
} // namespace nf7
|