1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #import <string>
- class Widget {
- public:
- Widget(int number, const std::string& name);
- ~Widget();
-
- float GetFloatValue() const;
- int GetIntValue() const;
-
- std::string GetStringValue() const;
- void GetCharPtrValue(char* buffer, size_t max_size) const;
- private:
-
- float number_;
- std::string name_;
- };
|