customizable namespaces

This commit is contained in:
Jan Kuhlmann 2024-11-12 15:10:14 +01:00
parent 17cd9b2de0
commit ff753c9da0
2 changed files with 10 additions and 0 deletions

View File

@ -19,8 +19,13 @@
#include <sys/ioctl.h>
#include <unistd.h>
#ifdef TGLIB_GRAPHS_NAMESPACE
namespace TGLIB_GRAPHS_NAMESPACE
{
#else
namespace graphs
{
#endif
using namespace std;
enum style_type

View File

@ -14,8 +14,13 @@
#include <unistd.h>
#include <regex>
#ifdef TGLIB_TABLES_NAMESPACE
namespace TGLIB_TABLES_NAMESPACE
{
#else
namespace tables
{
#endif
using namespace std;
enum style_type