mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
15 lines
446 B
C++
15 lines
446 B
C++
//
|
|
// Copyright 2010-2011 Ettus Research LLC
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0
|
|
//
|
|
|
|
#include <uhd/utils/static.hpp>
|
|
#include <iostream>
|
|
|
|
UHD_STATIC_BLOCK(module_test){
|
|
std::cout << "---------------------------------------" << std::endl;
|
|
std::cout << "-- Good news, everyone!" << std::endl;
|
|
std::cout << "-- The test module has been loaded." << std::endl;
|
|
std::cout << "---------------------------------------" << std::endl;
|
|
}
|