2011-07-20 20:34:46 +10:00
|
|
|
/*
|
|
|
|
* This file is part of libgim.
|
|
|
|
*
|
|
|
|
* libgim is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2012-04-23 13:06:41 +10:00
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
2011-07-20 20:34:46 +10:00
|
|
|
*/
|
|
|
|
|
2011-05-23 17:18:52 +10:00
|
|
|
#ifndef __TYPES_HPP
|
|
|
|
#define __TYPES_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
2012-05-25 15:19:07 +10:00
|
|
|
#include <cstdlib>
|
2011-07-16 14:47:34 +10:00
|
|
|
#include <memory>
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-06-21 20:16:39 +10:00
|
|
|
/// Returns the number of elements of a statically allocated array
|
|
|
|
template <typename T, size_t N>
|
|
|
|
size_t elems(T (&)[N])
|
|
|
|
{ return N; }
|
2011-06-15 22:38:58 +10:00
|
|
|
|
2012-04-13 11:30:22 +10:00
|
|
|
|
2012-01-04 17:04:17 +11:00
|
|
|
template<class T, class...Args>
|
2012-05-25 15:19:07 +10:00
|
|
|
std::unique_ptr<T>
|
|
|
|
make_unique(Args&&... args) {
|
2012-01-04 17:04:17 +11:00
|
|
|
return std::unique_ptr<T> (new T(std::forward<Args>(args)...));
|
|
|
|
}
|
2011-07-16 14:47:34 +10:00
|
|
|
|
|
|
|
|
2011-05-23 17:18:52 +10:00
|
|
|
#endif // __TYPES_HPP
|