Class (object-oriented programming)
In object-oriented programming a class defines data and methods to work with that data. A specific instance of a class is called object.
Classes in LabVIEW
Classes in LabVIEW are stored in .lvclass files on disk.
Every class in LabVIEW ultimately inherits from LabVIEW Object, the ultimate ancestor for all LabVIEW classes. Having a common ancestor class provides a way to write functions that can take any class and operate on those classes in a common manner. [...] A common ancestor class provides a type that can be used by nodes such as Build Array to store objects from multiple classes in a single array.
[1]
LabVIEW has private data only. You cannot create public or protected data. Only VIs can be public or protected.
[1]
References
- ↑ 1.0 1.1 LabVIEW Object-Oriented Programming: The Decisions Behind the Design by National Instruments