HatchKeeper  0.90
The Free Open-Source Egg Incubation Software
Info.h
Go to the documentation of this file.
1 /*******************************************************************/
9 #ifndef _INFO_H__
10 #define _INFO_H__
11 
12 #include <iostream>
13 
21 class HK_Info
22 {
23  private:
24  const std::string HK_Platform = "Desktop";
25  const std::string HK_ValidChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -_,.";
26  const std::string HK_Copyright = "(C) 2017 - 2023 by The HatchKeeper Team";
27  public:
28  std::string GetValidChars();
29  std::string GetVersion();
30  std::string GetPlatform();
31  std::string GetCopyright();
32 };
33 #endif
Version And Other Information For HatchKeeper.
Definition: Info.h:22
const std::string HK_ValidChars
Definition: Info.h:25
const std::string HK_Copyright
Definition: Info.h:26
std::string GetVersion()
Returns The Version Of HatchKeeper.
Definition: HK_Info.cpp:15
std::string GetCopyright()
Returns Copyright Info.
Definition: HK_Info.cpp:21
std::string GetValidChars()
Returns Chars That Are Allowed In Text Controls.
Definition: HK_Info.cpp:12
std::string GetPlatform()
Returns The Platform For HatchKeeper.
Definition: HK_Info.cpp:18
const std::string HK_Platform
Definition: Info.h:24