Sha256: c075f0c42b6b54eefed6a72c0e3b374eb4cb86ed2c066d8ed63b952a3cbf6eda

Contents?: true

Size: 1.2 KB

Versions: 20

Compression:

Stored size: 1.2 KB

Contents

/*
 * Trema C++ wrapper.
 *
 * Copyright (C) 2012 Vladimir Olteanu
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2, as
 * published by the Free Software Foundation.
 *
 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */


#ifndef TREMA_HPP
#define TREMA_HPP


template <typename type1, typename type2> struct _types_compatible_p {
  static const bool result = false;
};

template <typename type1> struct _types_compatible_p<type1, type1> {
  static const bool result = true;
};

#define __builtin_types_compatible_p( type1, type2 ) _types_compatible_p< type1, type2 >::result


extern "C" {
#include "trema.h"
}


#endif // TREMA_HPP


/*
 * Local variables:
 * c-basic-offset: 2
 * indent-tabs-mode: nil
 * End:
 */

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
trema-0.4.7 src/lib/trema.hpp
trema-0.4.6 src/lib/trema.hpp
trema-0.4.5 src/lib/trema.hpp
trema-0.4.4 src/lib/trema.hpp
trema-0.4.3 src/lib/trema.hpp
trema-0.4.2 src/lib/trema.hpp
trema-0.4.1 src/lib/trema.hpp
trema-0.4.0 src/lib/trema.hpp
trema-0.3.21 src/lib/trema.hpp
trema-0.3.20 src/lib/trema.hpp
trema-0.3.19 src/lib/trema.hpp
trema-0.3.18 src/lib/trema.hpp
trema-0.3.17 src/lib/trema.hpp
trema-0.3.16 src/lib/trema.hpp
trema-0.3.15 src/lib/trema.hpp
trema-0.3.14 src/lib/trema.hpp
trema-0.3.13 src/lib/trema.hpp
trema-0.3.12 src/lib/trema.hpp
trema-0.3.11 src/lib/trema.hpp
trema-0.3.10 src/lib/trema.hpp