mirror of
https://github.com/tdulcet/Table-and-Graph-Libs.git
synced 2025-05-08 00:01:21 +08:00
customizable namespaces
This commit is contained in:
parent
17cd9b2de0
commit
ff753c9da0
@ -19,8 +19,13 @@
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#ifdef TGLIB_GRAPHS_NAMESPACE
|
||||||
|
namespace TGLIB_GRAPHS_NAMESPACE
|
||||||
|
{
|
||||||
|
#else
|
||||||
namespace graphs
|
namespace graphs
|
||||||
{
|
{
|
||||||
|
#endif
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
enum style_type
|
enum style_type
|
||||||
|
@ -14,8 +14,13 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
||||||
|
#ifdef TGLIB_TABLES_NAMESPACE
|
||||||
|
namespace TGLIB_TABLES_NAMESPACE
|
||||||
|
{
|
||||||
|
#else
|
||||||
namespace tables
|
namespace tables
|
||||||
{
|
{
|
||||||
|
#endif
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
enum style_type
|
enum style_type
|
||||||
|
Loading…
Reference in New Issue
Block a user