X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcore%2Futil%2FString.hpp;h=8990cdf2526af59bba945c1c07e2d3f4c00da090;hb=c377f6f51a72b35d5d0b341c624e8bad55baeea4;hp=9e20a36c948caab4dd2a44cbc0ab975dbb678ecd;hpb=4e12ac57e93c052f716a6305ad8fc099c45899d1;p=anna.git diff --git a/include/anna/core/util/String.hpp b/include/anna/core/util/String.hpp index 9e20a36..8990cdf 100644 --- a/include/anna/core/util/String.hpp +++ b/include/anna/core/util/String.hpp @@ -1,8 +1,8 @@ -// ANNA - Anna is Not 'N' Anymore +// ANNA - Anna is Not Nothingness Anymore // // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo // -// https://bitbucket.org/testillano/anna +// http://redmine.teslayout.com/projects/anna-suite // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions @@ -14,7 +14,7 @@ // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. -// * Neither the name of Google Inc. nor the names of its +// * Neither the name of the copyright holder nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // @@ -41,7 +41,7 @@ #include -#include +#include namespace anna { @@ -103,8 +103,8 @@ public: String& operator = (const int vv) throw() { std::string::clear(); return operator<< (vv); } String& operator = (const unsigned int vv) throw() { std::string::clear(); return operator<< (vv); } String& operator = (const bool vv) throw() { std::string::clear(); return operator<< (vv); } - String& operator = (const Integer64 vv) throw() { std::string::clear(); return operator<< (vv); } - String& operator = (const Unsigned64 vv) throw() { std::string::clear(); return operator<< (vv); } + String& operator = (const S64 vv) throw() { std::string::clear(); return operator<< (vv); } + String& operator = (const U64 vv) throw() { std::string::clear(); return operator<< (vv); } String& operator = (const float vv) throw() { std::string::clear(); return operator<< (vv); } String& operator = (const double vv) throw() { std::string::clear(); return operator<< (vv); } String& operator = (const std::string& vv) throw() { std::string::operator= (vv); return *this; } @@ -114,8 +114,8 @@ public: String& operator += (const int vv) throw() { return operator<< (vv); } String& operator += (const unsigned int vv) throw() { return operator<< (vv); } String& operator += (const bool vv) throw() { return operator<< (vv); } - String& operator += (const Integer64 vv) throw() { return operator<< (vv); } - String& operator += (const Unsigned64 vv) throw() { return operator<< (vv); } + String& operator += (const S64 vv) throw() { return operator<< (vv); } + String& operator += (const U64 vv) throw() { return operator<< (vv); } String& operator += (const float vv) throw() { return operator<< (vv); } String& operator += (const double vv) throw() { return operator<< (vv); } String& operator += (const std::string& vv) throw() { return *this << vv; } @@ -125,8 +125,8 @@ public: String& operator << (const int vv) throw(); String& operator << (const unsigned int vv) throw(); String& operator << (const bool vv) throw() { std::string::operator+= ((vv == true) ? "true" : "false"); return *this; } - String& operator << (const Integer64 vv) throw(); - String& operator << (const Unsigned64 vv) throw(); + String& operator << (const S64 vv) throw(); + String& operator << (const U64 vv) throw(); String& operator << (const float vv) throw(); String& operator << (const double vv) throw(); String& operator << (const std::string& vv) throw() { std::string::operator+= (vv); return *this; } @@ -177,7 +177,7 @@ public: * \param vv Valor a interpretar. * \return La cadena con el contenido interpretado. */ - static String hex(const Integer64 vv) { + static String hex(const S64 vv) { return __format(vv, "0x%llx"); /*#ifdef __anna64__ return __format (vv, "0x%lx");