summarylogtreecommitdiffstats
path: root/Txt.h
diff options
context:
space:
mode:
Diffstat (limited to 'Txt.h')
-rw-r--r--Txt.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Txt.h b/Txt.h
new file mode 100644
index 000000000000..46d15aa2f150
--- /dev/null
+++ b/Txt.h
@@ -0,0 +1,15 @@
+#ifndef _TXT_H_
+#define _TXT_H_
+
+#include "destructive_reasoning.h"
+
+class Txt
+{
+ public:
+ static int contains(std::string s, char c);
+ static std::string trimEnd(std::string s);
+ static std::string trimFront(std::string s);
+ static std::string substring(std::string s, int start, int end);
+};
+
+#endif