!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/include/gdcm-3.0/   drwxr-xr-x
Free 13.16 GB of 57.97 GB (22.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     gdcmSegmentHelper.h (2.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*=========================================================================

  Program: GDCM (Grassroots DICOM). A DICOM library

  Copyright (c) 2006-2011 Mathieu Malaterre
  All rights reserved.
  See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
#ifndef GDCMSEGMENTHELPER_H
#define GDCMSEGMENTHELPER_H

#include "gdcmTypes.h"

#include <string>

namespace gdcm
{

namespace SegmentHelper
{

/**
  * \brief  This structure defines a basic coded entry with all of its attributes.
  *
  * \see  PS 3.3 section 8.8.
  */
struct GDCM_EXPORT BasicCodedEntry
{
  /**
    * \brief Constructor.
    */
  BasicCodedEntry():
    CV(""),
    CSD(""),
    CSV(""),
    CM("")
  {}

  /**
    * \brief constructor which defines type 1 attributes.
    */
  BasicCodedEntry(const char * a_CV,
                  const char * a_CSD,
                  const char * a_CM):
    CV(a_CV),
    CSD(a_CSD),
    CSV(""),
    CM(a_CM)
  {}

  /**
    * \brief constructor which defines attributes.
    */
  BasicCodedEntry(const char * a_CV,
                  const char * a_CSD,
                  const char * a_CSV,
                  const char * a_CM):
    CV(a_CV),
    CSD(a_CSD),
    CSV(a_CSV),
    CM(a_CM)
  {}

  /**
    * \brief  Check if each attibutes of the basic coded entry is defined.
    *
    * \param  checkOptionalAttributes Check also type 1C attributes.
    */
  bool IsEmpty(const bool checkOptionalAttributes = false) const;


  //**      Members     **//
  // 0008 0100 1   Code Value
  std::string CV;   /// Code Value attribute
  // 0008 0102 1   Coding Scheme Designator
  std::string CSD;  /// Coding Scheme Designator attribute
  // 0008 0103 1C  Coding Scheme Version
  std::string CSV;  /// Coding Scheme Version attribute
  // 0008 0104 1   Code Meaning
  std::string CM;   /// Code Meaning attribute
};

} // end of SegmentHelper namespace

} // end of gdcm namespace

#endif // GDCMSEGMENTHELPER_H

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.006 ]--