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