00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef OMC_VERIFIABLE_H
00016 #define OMC_VERIFIABLE_H
00017
00018 #include <string>
00019
00020 namespace omc
00021 {
00022 class Verifiable
00023 {
00024 public:
00025 virtual bool verify () = 0;
00026
00027 std::string getFalseCertificate () const;
00028
00029 void setFalseCertificate (std::string);
00030
00031 private:
00032 std::string m_falseCertificate;
00033 };
00034
00035
00037 inline std::string Verifiable::getFalseCertificate () const {
00038 return m_falseCertificate;
00039 }
00040
00042 inline void Verifiable::setFalseCertificate (std::string msg) {
00043 m_falseCertificate = msg;
00044 }
00045
00046 }
00047
00048 #endif