From bf83d5a03bf856e34bd0a6e2656a5b2dcfe8aafb Mon Sep 17 00:00:00 2001 From: Krzysztof Kosi??ski Date: Mon, 15 Mar 2010 00:58:16 +0100 Subject: Move around files to remove some vanity directories. Also remove the obsolete IDL file stub. (bzr r9194) --- src/traits/function.h | 122 -------------------------------------------------- 1 file changed, 122 deletions(-) delete mode 100644 src/traits/function.h (limited to 'src/traits/function.h') diff --git a/src/traits/function.h b/src/traits/function.h deleted file mode 100644 index d0dd5d87c..000000000 --- a/src/traits/function.h +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Inkscape::Traits::Function - traits class for C++ "functors" - * - * Authors: - * MenTaLguY - * - * Copyright (C) 2004 MenTaLguY - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifndef SEEN_INKSCAPE_TRAITS_FUNCTION_H -#define SEEN_INKSCAPE_TRAITS_FUNCTION_H - -namespace Inkscape { - -namespace Traits { - -template struct Function; - -template -struct Function { - typedef R Result; - - typedef void Arg0; - typedef void Arg1; - typedef void Arg2; - typedef void Arg3; - typedef void Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef void Arg1; - typedef void Arg2; - typedef void Arg3; - typedef void Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef A1 Arg1; - typedef void Arg2; - typedef void Arg3; - typedef void Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef A1 Arg1; - typedef A2 Arg2; - typedef void Arg3; - typedef void Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef A1 Arg1; - typedef A2 Arg2; - typedef A3 Arg3; - typedef void Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef A1 Arg1; - typedef A2 Arg2; - typedef A3 Arg3; - typedef A4 Arg4; - typedef void Arg5; -}; - -template -struct Function { - typedef R Result; - - typedef A0 Arg0; - typedef A1 Arg1; - typedef A2 Arg2; - typedef A3 Arg3; - typedef A4 Arg4; - typedef A5 Arg5; -}; - -} - -} - -#endif -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : -- cgit v1.2.3