00001 #ifndef _THESIS_HPP_
00002 #define _THESIS_HPP_
00003
00004 #include <string>
00005
00006 class Thesis {
00007 private:
00008 std::string titel;
00009
00010 public:
00011 Thesis(std::string titel);
00012 virtual ~Thesis();
00013 };
00014
00015 #endif