diff options
author | preston.a.jackson <preston.a.jackson@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-03-02 23:40:01 +0000 |
---|---|---|
committer | preston.a.jackson <preston.a.jackson@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-03-02 23:40:01 +0000 |
commit | 0928f00c6b995af037b787b710fde509267ad624 (patch) | |
tree | 96baf29442c98755c96c0c7131f29da954f531c4 /xcode/Samples/FrameworkSample/widget.h | |
parent | 172b233a0477f82a5bc2b6d15f0647db1cfe5a1e (diff) | |
download | googletest-0928f00c6b995af037b787b710fde509267ad624.tar.gz googletest-0928f00c6b995af037b787b710fde509267ad624.tar.bz2 googletest-0928f00c6b995af037b787b710fde509267ad624.zip |
Updating the xcode/Samples.
Diffstat (limited to 'xcode/Samples/FrameworkSample/widget.h')
-rw-r--r-- | xcode/Samples/FrameworkSample/widget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xcode/Samples/FrameworkSample/widget.h b/xcode/Samples/FrameworkSample/widget.h index 59cc82cd..0c55cdc8 100644 --- a/xcode/Samples/FrameworkSample/widget.h +++ b/xcode/Samples/FrameworkSample/widget.h @@ -27,7 +27,7 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // -// Author: preston.jackson@gmail.com (Preston Jackson) +// Author: preston.a.jackson@gmail.com (Preston Jackson) // // Google Test - FrameworkSample // widget.h @@ -43,15 +43,15 @@ class Widget { public: Widget(int number, const std::string& name); ~Widget(); - + // Public accessors to number data float GetFloatValue() const; int GetIntValue() const; - + // Public accessors to the string data std::string GetStringValue() const; void GetCharPtrValue(char* buffer, size_t max_size) const; - + private: // Data members float number_; |