28 lines
500 B
C++
Raw Normal View History

2020-02-01 23:06:01 +01:00
#include <iostream>
2018-04-23 21:13:27 +02:00
#include "IncA.hpp"
#include "IncB.hpp"
2017-07-20 19:35:53 +02:00
#include "StyleA.hpp"
2018-01-26 17:06:56 +01:00
#include "StyleB.hpp"
2017-07-20 19:35:53 +02:00
2021-09-14 00:13:48 +02:00
#ifdef HAVE_CFG_DEBUG
# include "CfgDebug.hpp"
#endif
#ifdef HAVE_CFG_OTHER
# include "CfgOther.hpp"
#endif
2017-07-20 19:35:53 +02:00
int main(int argv, char** args)
{
2018-01-26 17:06:56 +01:00
StyleA styleA;
StyleB styleB;
2018-04-23 21:13:27 +02:00
IncA incA;
IncB incB;
2019-11-11 23:01:05 +01:00
// Test the TOKEN definition passed on the command line
std::string token(TOKEN);
std::cout << "std::string(TOKEN): \"" << token << "\"\n";
return (token == "hello;") ? 0 : -1;
2017-07-20 19:35:53 +02:00
}