Files
ec-gn-ja-pcf/EC-GN-JA-PCF/.svn/pristine/c2/c273d2aff295fabd70fd071026672887a7ad44c2.svn-base

37 lines
1.7 KiB
Plaintext

#ifndef CCS_HEADERS_H
#define CCS_HEADERS_H
/******************************************************************************
* $HeadURL: https://svnpub.iter.org/codac/iter/codac/dev/units/m-codac-unit-templates/tags/CODAC-CORE-6.0.0/templates/cpp/main/c++/include/ccs-headers.h $
* $Id: ccs-headers.h 83715 2018-01-30 16:31:40Z abadiel $
*
* Project : CODAC Core System
*
* Description : CODAC Core System - Commonly used program headers
*
* Author : Bertrand Bauvir
*
* Copyright (c) : 2010-2018 ITER Organization,
* CS 90 046
* 13067 St. Paul-lez-Durance Cedex
* France
*
* This file is part of ITER CODAC software.
* For the terms and conditions of redistribution or use of this software
* refer to the file ITER-LICENSE.TXT located in the top level directory
* of the distribution package.
******************************************************************************/
/* log.h -- Part of CCS. It includes the declaration of the logging library API. */
#include <log.h> /* This file is mandatory to compile this program against the logging library and API. */
/* sdn.h -- Part of CCS. It includes the declaration of the SDN library API. */
#include <sdn.h> /* This file is mandatory to compile this program against the SDN core library and API. */
/* tcn.h -- Part of CCS. It includes the declaration of the TCN library API. */
#include <tcn.h> /* This file is optional and can be removed if the program does not need to handle ITER time or operate on it. */
/* dan.h -- part of CCS. It includes the declaration of the DAN library API. */
#include <dan.h> /* This file is optional and can be removed if the program does not need to handle ITER time or operate on it. */
#endif /* CCS_HEADERS_H */