From: Florian Paul Schmidt Date: Sun, 28 Mar 2010 04:12:00 +0000 (+0000) Subject: (Commit created by redmine exporter script from page "NewQC" version 13) X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9b79106f6159d48c46c03f4fafe56afd5b1e9fe8;p=xonotic%2Fxonotic.wiki.git (Commit created by redmine exporter script from page "NewQC" version 13) --- diff --git a/NewQC.textile b/NewQC.textile index b20ee54..880ebcd 100644 --- a/NewQC.textile +++ b/NewQC.textile @@ -7,6 +7,18 @@ h2. Clean syntax: In fteqcc there are some ambiguities regarding fieldpointers, function pointers, and field-return-types etc. A clean syntax is needed, *SUGGESTIONS ARE WELCOME*, my(blub's) current suggestion is: +|_.definition|_.meaning| +|float foo(void)| function| +|float foo*(void)| function pointer| +|.float foo(void)| member: method/function pointer| +|..float foo(void)|/2. member: method/function pointer returning .float| +|..*float foo(void)| +|.*float foo*(void)| function pointer returning .float| +|.*float| fieldpointer| +|.*float foo(void)| fieldpointer: method/function pointer| +|.*.float foo(void)| fieldpointer: method/function pointer returning .float| + + |_.definition|_.meaning| |float foo(void)| function| |float foo*(void)| function pointer|