Click here to Skip to main content
Click here to Skip to main content

A C++ Config File Parser

By , 16 May 2008
 
config-src.zip
config
config
config.vcproj.EMEA.kschweb.user
Debug
debug
config.ilk
#ifndef IncLog
#define IncLog

enum LogLevel { LOG_QUIET, LOG_ERROR, LOG_INFO, LOG_DEBUG };

extern LogLevel logLevel;

#define logError(A) ((logLevel >= LOG_ERROR)?((A),0):(0))
#define logInfo(A) ((logLevel >= LOG_INFO)?((A),0):(0))
#define logDebug(A) ((logLevel >= LOG_DEBUG)?((A),0):(0))

void debugBreak();

#endif

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)

About the Author

freejack

United States United States
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 17 May 2008
Article Copyright 2008 by freejack
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid