#ifndef _PGP2BAXI_H #define _PGP2BAXI_H #include #include //Pgp2bAxi class IPgp2bAxiB; typedef shared_ptr Pgp2bAxiB; class IPgp2bAxiB : public virtual IMMIODev { public: static Pgp2bAxiB create(const char *name); }; class IPgp2bAxi; typedef shared_ptr Pgp2bAxi; class IPgp2bAxi : public virtual IEntry { public: static Pgp2bAxi create(Path p); public: /* Commands */ virtual void ResetRx() = 0; virtual void Flush() = 0; }; #endif