X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Futil.hpp;h=505108e830bba9c48ede56e4055cc9200d56084d;hb=f26cca046b4879a78261ea436c3e21bb3b851b52;hp=fa6f96b334fc3e4673a67be945417108ed8363da;hpb=b54482cdb759f092fcd07a9be4fdc8c28009b895;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index fa6f96b..505108e 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,4 +1,4 @@ -/* $Id: util.hpp,v 1.1 2005-10-26 18:53:49 adam Exp $ +/* $Id: util.hpp,v 1.2 2005-10-30 17:13:36 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,10 +9,24 @@ #include #include + +#include + namespace yp2 { struct util { static bool pqf(ODR odr, Z_APDU *apdu, const std::string &q); }; + + class odr : public boost::noncopyable { + public: + odr(int type); + odr(); + ~odr(); + operator ODR() const; + private: + ODR m_odr; + }; + } #endif /*