remove "either" from the license
[Atomics.git] / Atomics.h
blob80a441e64dc4c575cc9aaa02e83bb073024aa2c5
1 /***************************************************************************
2 * Copyright (c) 2010, Ronald Landheer-Cieslak & Vlinder Software *
3 * *
4 * Ownership of Copyright *
5 * ====================== *
6 * The copyright in this material (including without limitation the text, *
7 * computer code, artwork, photographs, images, music, audio material, *
8 * video material and audio-visual material) is owned by Ronald *
9 * Landheer-Cieslak and/or Vlinder Software. *
10 * *
11 * Copyright license *
12 * ================= *
13 * This program is free software: you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation, version 3 of the License. *
16 * *
17 * This program is distributed in the hope that it will be useful, *
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
20 * GNU General Public License for more details. *
21 * *
22 * You should have received a copy of the GNU General Public License *
23 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
24 ***************************************************************************/
25 #ifndef VLINDER_ATOMICS_ATOMICS_H
26 #define VLINDER_ATOMICS_ATOMICS_H
28 #if USE_RELACY
29 #include "RelacyAtomics.h"
30 #else
31 #include "PlatformAtomics.h"
32 #endif
34 namespace Vlinder
36 namespace Atomics
38 #if USE_RELACY
39 typedef RelacyAtomics Atomics;
40 #else
41 typedef PlatformAtomics Atomics;
42 #endif
46 #endif