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

MPPS SCP - DICOM Modality Performed Procedure Step Server. More...

#include "kcenon/pacs/core/dicom_dataset.h"
#include "kcenon/pacs/core/dicom_tag_constants.h"
#include "kcenon/pacs/core/result.h"
#include "kcenon/pacs/encoding/vr_type.h"
#include "kcenon/pacs/network/dicom_server.h"
#include "kcenon/pacs/network/server_config.h"
#include "kcenon/pacs/services/mpps_scp.h"
#include "kcenon/pacs/services/verification_scp.h"
#include <atomic>
#include <chrono>
#include <csignal>
#include <cstdlib>
#include <filesystem>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <map>
#include <mutex>
#include <sstream>
#include <string>
Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

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

Detailed Description

MPPS SCP - DICOM Modality Performed Procedure Step Server.

Definition in file main.cpp.

Function Documentation

◆ main()

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

Definition at line 629 of file main.cpp.

629 {
630 std::cout << R"(
631 __ __ ____ ____ ____ ____ ____ ____
632 | \/ | _ \| _ \/ ___| / ___| / ___| _ \
633 | |\/| | |_) | |_) \___ \ \___ \| | | |_) |
634 | | | | __/| __/ ___) | ___) | |___| __/
635 |_| |_|_| |_| |____/ |____/ \____|_|
636
637 DICOM Modality Performed Procedure Step Server
638)" << "\n";
639
640 mpps_scp_args args;
641
642 if (!parse_arguments(argc, argv, args)) {
643 print_usage(argv[0]);
644 return 1;
645 }
646