You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is every service plugin required to define a STAG?
where are the parameters to the usages of STAG in H4Service.h defined? e.g. STAG(age) - where is age defined? We've tried searching in files and not found a definition that we understand; I've also tried using Visual Studio Codes and it can't find the definition either ;-)
if a new service plugin should define a STAG, where should it declare it?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
So a STAG(all) call defined a function as following:
constexprconstchar* allTag(){ return"all"; }
It's intended to standardize the tags used, and to raise a compilation error if one isn't spelled correctly.
so if happened that someone typed alTag(), it'll give a compilation error because it's not defined.
I'm working with a student to make an ArtNet service plugin...
We've come across the
STAG
macro- https://github.com/philbowles/h4plugins/search?q=STAGCouple of questions:
H4Service.h
defined? e.g.STAG(age)
- where isage
defined? We've tried searching in files and not found a definition that we understand; I've also tried using Visual Studio Codes and it can't find the definition either ;-)Thanks in advance!
The text was updated successfully, but these errors were encountered: