Data Access User Manual > Rogue Wave Views Data Access Common Framework > Data Access Basics > Rogue Wave Views Interface > IlvApplication
 
IlvApplication
Applications built with Rogue Wave Views Studio contain an instance of a subclass of the IlvApplication class. This class manages the creation of the IlvDisplay object along with the creation of the application panels (that is, containers). Assuming the name of the application is “MyApp”, the following is a sample of the code that Rogue Wave Views Studio would generate:
class MyApp: public IlvApplication {
...
virtual void makePanels();
...
};
void MyApp::makePanels() {
// Create all the panels defined in the Application.
...
}
int main (int argc, char* argv[]) {
...
MyApp* appli = new MyApp(“myapp”, 0, argc, argv);
...
}

Version 6.0
Copyright © 2015, Rogue Wave Software, Inc. All Rights Reserved.