2015-03-07 22:29:56 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Janos Kutscherauer <noshky@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file ColorTextOutputter.h
|
|
|
|
*/
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef EMBUNIT_COLORTEXTOUTPUTTER_H
|
|
|
|
#define EMBUNIT_COLORTEXTOUTPUTTER_H
|
2015-03-07 22:29:56 +01:00
|
|
|
|
|
|
|
#include "Outputter.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
OutputterRef ColorTextOutputter_outputter(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* EMBUNIT_COLORTEXTOUTPUTTER_H */
|
2015-03-07 22:29:56 +01:00
|
|
|
/** @} */
|