From 8286ac511144e4f17d34eac9affb97e50646344a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 23 Jul 2014 15:25:44 +0200 Subject: Imported Upstream version 4.0.0 --- libcult/cult/types/fundamental.hxx | 175 ------------------------------------- 1 file changed, 175 deletions(-) delete mode 100644 libcult/cult/types/fundamental.hxx (limited to 'libcult/cult/types/fundamental.hxx') diff --git a/libcult/cult/types/fundamental.hxx b/libcult/cult/types/fundamental.hxx deleted file mode 100644 index 01116f1..0000000 --- a/libcult/cult/types/fundamental.hxx +++ /dev/null @@ -1,175 +0,0 @@ -// file : cult/types/fundamental.hxx -// author : Boris Kolpackov -// copyright : Copyright (c) 2005-2010 Boris Kolpackov -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef CULT_TYPES_FUNDAMENTAL_HXX -#define CULT_TYPES_FUNDAMENTAL_HXX - -#include // std::size_t, std::ptrdiff_t - -namespace Cult -{ - namespace Types - { - namespace Fundamental - { - // Fundamental types - // - typedef void Void; - - typedef bool Boolean; - - typedef char Char; - typedef wchar_t WideChar; - - typedef short Short; - typedef unsigned short UnsignedShort; - - typedef int Int; - typedef unsigned int UnsignedInt; - - typedef long Long; - typedef unsigned long UnsignedLong; - - //@@ what would be a good name for float, double and long double? - // ShortFloat, Float and LongFloat - // ShortReal, Real, LongReal - - typedef std::size_t Size; - typedef std::ptrdiff_t PtrDifference; - typedef Size Index; - - // Fixed-size types. - // - typedef signed char Int8; - typedef unsigned char UnsignedInt8; - - typedef signed short Int16; - typedef unsigned short UnsignedInt16; - - typedef signed int Int32; - typedef unsigned int UnsignedInt32; - - typedef signed long long Int64; - typedef unsigned long long UnsignedInt64; - - - typedef float Float32; - typedef double Float64; - typedef long double Float128; // Only 96 on x86-32. - } - - - // Fundamental types - // - using Fundamental::Void; - - using Fundamental::Boolean; - - using Fundamental::Char; - using Fundamental::WideChar; - - using Fundamental::Short; - using Fundamental::UnsignedShort; - - using Fundamental::Int; - using Fundamental::UnsignedInt; - - using Fundamental::Long; - using Fundamental::UnsignedLong; - - using Fundamental::Size; - using Fundamental::PtrDifference; - using Fundamental::Index; - - - // Fixed-size types. - // - using Fundamental::Int8; - using Fundamental::UnsignedInt8; - - using Fundamental::Int16; - using Fundamental::UnsignedInt16; - - using Fundamental::Int32; - using Fundamental::UnsignedInt32; - - using Fundamental::Int64; - using Fundamental::UnsignedInt64; - - - using Fundamental::Float32; - using Fundamental::Float64; - using Fundamental::Float128; // Only 96 on x86-32. - - - // Note: make sure you inherit publicly from this type for - // it could be used for metaprogramming. - // - class NonCopyable - { - NonCopyable (NonCopyable const&); - - NonCopyable& - operator= (NonCopyable const&); - - protected: - NonCopyable () - { - } - }; - - // class Clonable ? - // - - } - - // Fundamental types - // - using Types::Void; - - using Types::Boolean; - - using Types::Char; - using Types::WideChar; - - using Types::Short; - using Types::UnsignedShort; - - using Types::Int; - using Types::UnsignedInt; - - using Types::Long; - using Types::UnsignedLong; - - using Types::Size; - using Types::PtrDifference; - using Types::Index; - - - // Fixed-size types. - // - using Types::Int8; - using Types::UnsignedInt8; - - using Types::Int16; - using Types::UnsignedInt16; - - using Types::Int32; - using Types::UnsignedInt32; - - using Types::Int64; - using Types::UnsignedInt64; - - - using Types::Float32; - using Types::Float64; - using Types::Float128; // Only 96 on x86-32. - - // - // - using Types::NonCopyable; -} - -#endif // CULT_TYPES_FUNDAMENTAL_HXX -- cgit v1.2.3