GM6000 Digital Heater Controller Branch: main
SDX-1330
NewLine.h
Go to the documentation of this file.
1#ifndef Cpl_Io_NewLine_h_
2#define Cpl_Io_NewLine_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_map.h"
17#include "colony_config.h"
18
19
20/// The standard newline is "\n", but allow the application to override/change it
21#ifndef OPTION_CPL_IO_NEW_LINE_STANDARD
22#define OPTION_CPL_IO_NEW_LINE_STANDARD "\n"
23#endif
24
25/// The application must provide/map the native newline character
26#define CPL_IO_NEW_LINE_NATIVE CPL_IO_NEW_LINE_NATIVE_MAP
27
28
29
30///
31namespace Cpl {
32///
33namespace Io {
34
35
36/** This interface defines the 'newline' character(s). There is a
37 standardized (within Colony.*) newline character which is "\n". In addition
38 there is a native (to target's OS) newline character(s). The recommendation
39 is to build your application to ALWAYS use the 'standardized' newline
40 character and then use the Colony's Late-Header pattern (aka colony_config.h)
41 to customize (if required) the actual newline for the application's
42 platform.
43 */
45{
46public:
47 /** This method returns the Colony standardized newline character(s)
48 */
49 static const char* standard( void ) { return OPTION_CPL_IO_NEW_LINE_STANDARD; }
50
51
52
53 /** This methods returns the target's native newline character(s).
54 NOTE: Use of this method is discouraged - see comments in class
55 description.
56 */
57 static const char* native( void ) { return CPL_IO_NEW_LINE_NATIVE; }
58};
59
60
61}; // end namespaces
62};
63#endif // end header latch
64
#define CPL_IO_NEW_LINE_NATIVE
The application must provide/map the native newline character.
Definition NewLine.h:26
#define OPTION_CPL_IO_NEW_LINE_STANDARD
The standard newline is "\n", but allow the application to override/change it.
Definition NewLine.h:22
This interface defines the 'newline' character(s).
Definition NewLine.h:45
static const char * standard(void)
This method returns the Colony standardized newline character(s)
Definition NewLine.h:49
static const char * native(void)
This methods returns the target's native newline character(s).
Definition NewLine.h:57
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20