Going from Flowcode V5 to V9 - some questions (I can't find any answers on the forum)...
What does the double colon operator signify?
Do FCVs exist in V9?
In the conversion from V5 to V9, I keep seeing v5_ in front of certain functions. Is this a 'translation' from V5 to V9?
			
			
									
						Double colon operator
- 
				chezkrimles
 - Posts: 9
 - http://meble-kuchenne.info.pl
 - Joined: Thu Jan 14, 2021 7:12 pm
 - Has thanked: 2 times
 
- 
				Steve-Matrix
 - Matrix Staff
 - Posts: 1624
 - Joined: Sat Dec 05, 2020 10:32 am
 - Has thanked: 224 times
 - Been thanked: 384 times
 
Re: Double colon operator
They signify ownership. So "DSPDelay1::Delay()" means the delay function of the DSPDelay1 component.
Yes. FCV_ is the prefix given to global variables in the generated C code. FCL_ is used as a prefix for local variables.
I think so. There were big changes between v5 and v6 which caused problems with backwards compatibility.chezkrimles wrote: ↑Thu Jan 28, 2021 2:29 pmIn the conversion from V5 to V9, I keep seeing v5_ in front of certain functions. Is this a 'translation' from V5 to V9?