| /******************************************************************************* | |
| * Copyright (c) 2010 - 2016 ACIN, Profactor GmbH, fortiss GmbH | |
| * All rights reserved. This program and the accompanying materials | |
| * are made available under the terms of the Eclipse Public License v1.0 | |
| * which accompanies this distribution, and is available at | |
| * http://www.eclipse.org/legal/epl-v10.html | |
| * | |
| * Contributors: | |
| * Alois Zoitl, Gerhard Ebenhofer - initial API and implementation and/or initial documentation | |
| * Alois Zoitl - updated to use generic malloc infrastructure | |
| *******************************************************************************/ | |
| #ifndef FORTEALLOC_H_ | |
| #define FORTEALLOC_H_ | |
| //on win32 environments use default new operator | |
| #ifndef FORTE_USE_DEFAULT_NEW_AND_DELETE | |
| #define FORTE_USE_DEFAULT_NEW_AND_DELETE | |
| #endif | |
| //on win32 environments we are typically happy with the generic alloc implementation based on malloc and free | |
| #include "../genfortealloc.h" | |
| #endif /* FORTEALLOC_H_ */ |