TDME2  1.9.200
BasePropertiesSubView.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 #include <tdme/tdme.h>
9 
10 using std::string;
11 
14 
15 /**
16  * Model base view
17  * @author Andreas Drewke
18  */
20 {
21 private:
23 
24 public:
25  /**
26  * Public constructor
27  * @param prototypeBaseSubController model base sub screen controller
28  */
30 
31  /**
32  * Update current model data
33  * @param prototype prototype
34  * @param name name
35  * @param description description
36  */
37  void setPrototypeData(Prototype* prototype, const string& name, const string& description);
38 
39 };
Prototype definition.
Definition: Prototype.h:55
void setPrototypeData(Prototype *prototype, const string &name, const string &description)
Update current model data.
BasePropertiesSubView(BasePropertiesSubController *prototypeBaseSubController)
Public constructor.