PACS System 0.1.0
PACS DICOM system library
Loading...
Searching...
No Matches
main.cpp File Reference

Storage SCP - DICOM Image Receiver. More...

#include "kcenon/pacs/core/dicom_dataset.h"
#include "kcenon/pacs/core/dicom_file.h"
#include "kcenon/pacs/core/dicom_tag_constants.h"
#include "kcenon/pacs/network/dicom_server.h"
#include "kcenon/pacs/network/server_config.h"
#include "kcenon/pacs/services/storage_scp.h"
#include "kcenon/pacs/storage/file_storage.h"
#include <atomic>
#include <chrono>
#include <csignal>
#include <cstdlib>
#include <filesystem>
#include <iomanip>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <vector>
Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Detailed Description

Storage SCP - DICOM Image Receiver.

Definition in file main.cpp.

Function Documentation

◆ main()

int main ( int argc,
char * argv[] )

Definition at line 520 of file main.cpp.

520 {
521 std::cout << R"(
522 ____ _____ ___ ____ _____ ____ ____ ____
523 / ___|_ _/ _ \| _ \| ____| / ___| / ___| _ \
524 \___ \ | || | | | |_) | _| \___ \| | | |_) |
525 ___) || || |_| | _ <| |___ ___) | |___| __/
526 |____/ |_| \___/|_| \_\_____| |____/ \____|_|
527
528 DICOM Image Receiver Server
529)" << "\n";
530
531 store_scp_args args;
532
533 if (!parse_arguments(argc, argv, args)) {
534 print_usage(argv[0]);
535 return 1;
536 }
537