version.h (ansifilter-2.17.tar.bz2) | : | version.h (ansifilter-2.18.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 28 | skipping to change at line 28 | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
GNU General Public License for more details. | GNU General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with ANSIFilter. If not, see <http://www.gnu.org/licenses/>. | along with ANSIFilter. If not, see <http://www.gnu.org/licenses/>. | |||
*/ | */ | |||
#ifndef VERSION_H | #ifndef VERSION_H | |||
#define VERSION_H | #define VERSION_H | |||
#define ANSIFILTER_VERSION "2.17" | #include <string> | |||
#define ANSIFILTER_VERSION "2.18" | ||||
#define ANSIFILTER_URL "http://www.andre-simon.de/" | #define ANSIFILTER_URL "http://www.andre-simon.de/" | |||
#define ANSIFILTER_EMAIL "a.simon@mailbox.org" | #define ANSIFILTER_EMAIL "a.simon@mailbox.org" | |||
class Info | ||||
{ | ||||
public: | ||||
static std::string getVersion() { | ||||
return ANSIFILTER_VERSION; | ||||
} | ||||
static std::string getWebsite() { | ||||
return ANSIFILTER_URL; | ||||
} | ||||
static std::string getEmail() { | ||||
return ANSIFILTER_EMAIL; | ||||
} | ||||
}; | ||||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 20 lines changed or added |