BWAPI
Defines
SPAR/AIModule/BWTA/vendors/CGAL/CGAL/CORE/Impl.h File Reference
#include <CGAL/CORE/Config.h>
#include <CGAL/CORE/MemoryPool.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <cfloat>
#include <cassert>
#include <cctype>
#include <climits>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <string>
Include dependency graph for Impl.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define CORE_BEGIN_NAMESPACE   namespace CORE {
#define CORE_END_NAMESPACE   };
#define CORE_INLINE   inline
#define CORE_MEMORY(T)

Define Documentation

#define CORE_BEGIN_NAMESPACE   namespace CORE {
#define CORE_END_NAMESPACE   };
#define CORE_INLINE   inline
#define CORE_MEMORY (   T)
Value:
void *operator new( size_t size)                                     \
    { return MemoryPool<T>::global_allocator().allocate(size); }         \
    void operator delete( void *p, size_t )                              \
    { MemoryPool<T>::global_allocator().free(p); }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines